/* ═══════════════════════════════════════════════════════
   Vonvik – Styles
   Black + Gold aesthetic, no AI images, CSS-only visuals
   ═══════════════════════════════════════════════════════ */

:root {
    --black: #050505;
    --black-light: #0e0e0e;
    --black-card: #141414;
    --gold: #d4af37;
    --gold-dark: #aa8529;
    --gold-light: #f0d078;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #bbbbbb;
    --border: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 175, 55, 0.2);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }

/* Screen-reader only (SEO h1) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

.gold { color: var(--gold); }
.section-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 620px;
    margin-bottom: 3rem;
}

.section { padding: 7rem 0; }

/* ─── Buttons ─── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    transition: all 0.3s var(--ease);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    background: transparent;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.full-width { width: 100%; justify-content: center; }

/* ═══════════════════
   NAVBAR
   ═══════════════════ */
nav {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    transition: all 0.4s var(--ease);
}
nav.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
}

.nav-logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    mix-blend-mode: screen;
}

.nav-links {
    display: flex; align-items: center; gap: 2rem;
}
.nav-links a:not(.btn-gold) {
    font-size: 0.95rem; font-weight: 500; color: var(--gray-light);
    position: relative;
}
.nav-links a:not(.btn-gold)::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -4px; left: 0; background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:not(.btn-gold):hover { color: var(--white); }
.nav-links a:not(.btn-gold):hover::after { width: 100%; }
.nav-links .btn-gold { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 5px;
}
.hamburger span {
    display: block; width: 26px; height: 2px; background: var(--white);
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════
   HERO
   ═══════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.03) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.hero-logo {
    width: 420px;
    max-width: 80vw;
    filter: drop-shadow(0 0 40px rgba(212,175,55,0.5));
    mix-blend-mode: screen;
    animation: heroLogoFloat 5s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gray);
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}
.hero-social a {
    width: 44px; height: 44px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--gold);
    transition: all 0.3s ease;
}
.hero-social a:hover {
    background: var(--gold); color: var(--black);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* ═══════════════════
   ABOUT
   ═══════════════════ */
.about {
    background: var(--black-light);
    border-top: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.about-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.about-card:hover::before { opacity: 1; }

.about-icon {
    font-size: 2rem; color: var(--gold);
    margin-bottom: 1.5rem;
    width: 56px; height: 56px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}

.about-card p { color: var(--gray-light); font-size: 1rem; line-height: 1.7; }
.about-card strong { color: var(--white); }

/* ═══════════════════
   MUSIC
   ═══════════════════ */
.music-section { background: var(--black); }

.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.music-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
}
.music-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.music-card-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.music-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.music-card p { color: var(--gray); font-size: 0.95rem; }
.music-card strong { color: var(--white); }

/* ═══════════════════
   UPCOMING SHOWS
   ═══════════════════ */
.shows-section {
    background: var(--black-light);
    border-top: 1px solid var(--border);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.show-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex; gap: 1.5rem; align-items: flex-start;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.show-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.show-date {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    padding: 1rem 0.8rem;
    min-width: 70px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.show-day {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 900;
    color: var(--black); line-height: 1;
}
.show-month {
    font-family: var(--font-heading);
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--black);
}
.show-year {
    font-size: 0.65rem; color: rgba(0,0,0,0.5);
    font-weight: 600;
}

.show-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem; margin-bottom: 0.4rem;
}
.show-venue {
    font-size: 0.9rem; color: var(--gold); margin-bottom: 0.4rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.show-desc { font-size: 0.9rem; color: var(--gray); }

.show-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
}

/* Weekly Banner */
.shows-weekly {
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 2rem;
    display: flex; gap: 1.5rem; align-items: center;
}

.weekly-badge {
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
    display: flex; align-items: center; gap: 0.5rem;
}

.weekly-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem; margin-bottom: 0.3rem;
}
.weekly-info p { color: var(--gray); font-size: 0.95rem; }

/* ═══════════════════
   VENUES MARQUEE
   ═══════════════════ */
.venues-section { background: var(--black); }

.venues-marquee {
    overflow: hidden;
    margin: 2.5rem 0;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex; gap: 1rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.venue-chip {
    padding: 0.7rem 1.5rem;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-light);
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
}
.venue-chip.accent {
    border-color: var(--border-gold);
    color: var(--gold);
}

.featured-on {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.featured-label {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--gray); margin-bottom: 1.5rem;
}
.featured-logos {
    display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
}
.featured-badge {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--gray-light);
    font-weight: 500;
}
.featured-badge i { color: var(--gold); font-size: 1.2rem; }

/* ═══════════════════
   BOOK US
   ═══════════════════ */
.book-section {
    background: var(--black-light);
    border-top: 1px solid var(--border);
}

.book-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.book-info .section-desc { margin-bottom: 2rem; }
.book-info p { color: var(--gray); font-size: 1.05rem; margin-bottom: 2rem; }

.book-services {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.book-service {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 1rem;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem; font-weight: 500;
    transition: all 0.3s ease;
}
.book-service:hover { border-color: var(--border-gold); }
.book-service i { color: var(--gold); font-size: 1.2rem; }

.book-contact {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
}
.book-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.contact-item:hover { border-color: var(--border-gold); background: rgba(212,175,55,0.03); }
.contact-item i { font-size: 1.5rem; color: var(--gold); width: 24px; text-align: center; }
.contact-item strong { display: block; font-size: 0.95rem; }
.contact-item span { font-size: 0.85rem; color: var(--gray); }

/* ═══════════════════
   FOOTER
   ═══════════════════ */
.footer {
    background: #000;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem;
}

.footer-logo { height: 60px; filter: drop-shadow(0 0 8px rgba(212,175,55,0.3)); mix-blend-mode: screen; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; margin-top: 0.5rem; }

.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
    width: 42px; height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-light); font-size: 1rem;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    border-color: var(--gold); color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.8rem;
}

/* ═══════════════════
   ANIMATIONS
   ═══════════════════ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ═══════════════════
   RESPONSIVE
   ═══════════════════ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
        background: rgba(5,5,5,0.98);
        backdrop-filter: blur(15px);
        flex-direction: column; justify-content: center;
        padding: 2rem;
        transition: right 0.4s var(--ease);
        border-left: 1px solid var(--border);
        z-index: 999;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: flex; z-index: 1000; }

    .about-grid { grid-template-columns: 1fr; }
    .music-grid { grid-template-columns: 1fr; }
    .shows-grid { grid-template-columns: 1fr; }
    .book-wrapper { grid-template-columns: 1fr; }
    .book-services { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }

    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; align-items: center; }

    .shows-weekly { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .show-card { flex-direction: column; align-items: stretch; }
    .show-date { flex-direction: row; gap: 0.5rem; justify-content: center; padding: 0.6rem; border-radius: 8px; }
    .show-badge { position: static; margin-top: 0.5rem; align-self: flex-start; }
}
