/*
Theme Name: That Epiphone Guy
Author: Theodoros Tassopoulos
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400&display=swap');

:root {
    --bg: #0b0b0b;
    --text: #f2f2f2;
    --muted: #bfbfbf;
    --accent: #b89b5e;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

a:hover {
    border-color: var(--accent);
}

.container {
    max-width: 780px;
    margin: 0 auto;
    padding: 120px 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

h2 {
    font-size: 26px;
    margin-top: 80px;
}

p {
    color: var(--muted);
    margin-bottom: 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.manifesto {
    margin: 80px 0;
    font-size: 20px;
    line-height: 1.9;
}

.manifesto span {
    display: block;
}

footer {
    padding: 60px 20px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}

.video-embed {
    margin: 60px 0;
}

.video-embed iframe {
    width: 100%;
    min-height: 480px;
}

.video-meta p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
}

.guitar-specs p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px;
}

.guitar-notes {
    margin-top: 40px;
}
