:root {
    --bg: #0a0a0a;
    --card: #141414;
    --accent: #d97706; /* Amber guitar finish */
    --text: #e2e8f0;
    --text-muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.texture-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; /* Zvětšeno pro lepší odsazení od okrajů */
}

/* Nav */
nav { padding: 30px 0; position: absolute; width: 100%; z-index: 100; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; letter-spacing: 2px; }
.logo span { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hero */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Vycentruje obsah horizontálně */
    text-align: center;      /* Vycentruje text samotný */
    position: relative;
    background: radial-gradient(circle at center, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    width: 100%;       /* Roztažení na střed */
    max-width: 850px;  /* Aby řádky textu nebyly nekonečně dlouhé */
    margin: 0 auto;    /* Pojistka pro vycentrování */
}
.hero-content p { 
    margin: 20px auto; /* Vycentruje odstavec pod nadpisem */
}
.hero-image-placeholder {
    position: absolute; right: 0; top: 0; width: 45%; height: 100%;
    background: #111;
    display: flex; align-items: center; justify-content: center;
    border-left: 1px solid rgba(217, 119, 6, 0.2);
    color: #333; font-weight: bold;
}
.badge { color: var(--accent); text-transform: uppercase; font-size: 0.75rem; font-weight: 700; letter-spacing: 4px; }
h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem); /* Dynamická velikost */
    line-height: 1.1;
    margin: 20px auto;
    max-width: 900px; /* Zabrání přílišnému roztažení na ultra-wide monitorech */
}
.hero-content p { max-width: 480px; color: var(--text-muted); font-size: 1.1rem; }

/* Buttons */
.btn { display: inline-block; padding: 16px 32px; border-radius: 2px; text-decoration: none; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.4s; margin-top: 30px; }
.btn-gold { background: var(--accent); color: #000; }
.btn-outline { border: 1px solid #333; color: var(--text); margin-left: 15px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }

/* Sections */
section { padding: 140px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 30px; }
.centered { text-align: center; }
.section-subtitle { color: var(--text-muted); margin-top: -20px; margin-bottom: 60px; }

.dark-bg { background: var(--card); }

/* Bio */
.bio-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.main-img { width: 100%; border: 1px solid rgba(255,255,255,0.05); filter: grayscale(30%); }

/* Gear Grid */
.gear-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.gear-item { background: var(--bg); border: 1px solid rgba(255,255,255,0.03); transition: 0.4s; overflow: hidden; }
.gear-img-box { height: 220px; background: #1a1a1a; overflow: hidden; }
.gear-img-box img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.6s; }
.gear-info { padding: 30px; }
.gear-cat { font-size: 0.7rem; color: var(--accent); text-transform: uppercase; font-weight: 800; }
.gear-item h3 { margin: 10px 0; font-family: 'Playfair Display', serif; }
.gear-item:hover { transform: translateY(-10px); border-color: var(--accent); }
.gear-item:hover img { filter: grayscale(0%); transform: scale(1.05); }

/* Music Box */
.music-box { background: #111; padding: 80px 40px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.streaming-icons { margin-top: 30px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }

/* Newsletter */
.newsletter-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; background: var(--bg); padding: 60px; border-left: 4px solid var(--accent); }
.newsletter-form { display: flex; gap: 10px; margin: 30px 0 10px 0; }
.newsletter-form input { flex: 1; background: #050505; border: 1px solid #222; padding: 15px; color: white; border-radius: 0; }
.update-card { background: rgba(255,255,255,0.02); padding: 30px; }
.update-date { color: var(--accent); font-size: 0.7rem; text-transform: uppercase; font-weight: bold; }

/* Footer */
footer { padding: 80px 0 40px 0; background: #050505; text-align: center; }
.footer-socials { display: flex; gap: 40px; justify-content: center; margin: 40px 0; }
.social-link { text-decoration: none; color: var(--text); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.social-link:hover { color: var(--accent); }
.footer-bottom { font-size: 0.7rem; color: #333; border-top: 1px solid #111; padding-top: 20px; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .hero-image-placeholder { display: none; }
    .hero-content { width: 100%; text-align: center; }
    .hero-content p { margin: 20px auto; }
    .bio-layout, .newsletter-wrapper { grid-template-columns: 1fr; }
    h1 { font-size: 3.5rem; }
}

