/* ===========================
   VENDETTA - Band Website CSS
   Dark punk aesthetic with
   warm amber glow effects
   =========================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #1a1a18;
    --bg-darker: #111110;
    --bg-card: #222220;
    --glow-color: #d4c5a0;
    --glow-bright: #f5e6c0;
    --glow-warm: #c9b57a;
    --text-primary: #e8dcc8;
    --text-secondary: #a09880;
    --text-muted: #706858;
    --accent: #d4c5a0;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Oswald', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(80, 70, 50, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    position: relative;
}

/* ===========================
   HOME HERO WRAPPER
   On the homepage only, wraps
   the header + hero so the logo
   and nav overlay the photo.
   Sub-pages are unaffected.
   =========================== */
.home-hero {
    position: relative;
    width: 100%;
}

.home-hero .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* ===========================
   HERO SECTION
   Natural dimensions, not
   stretched. Footer always
   sits below in normal flow.
   =========================== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Dark overlay on the hero image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 16, 0.5) 0%,
        rgba(17, 17, 16, 0.3) 40%,
        rgba(17, 17, 16, 0.5) 100%
    );
    z-index: 2;
}

/* ===========================
   HEADER - large centred logo
   with nav below. Normal flow
   for all sub-pages.
   =========================== */
.site-header {
    position: relative;
    z-index: 10;
    width: 100%;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    gap: 30px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo {
    width: 600px;
    max-width: 90vw;
    height: auto;
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: brightness(1.2);
}

/* Navigation - horizontal, centered below logo */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 10px;
    justify-content: center;
}

.nav-link {
    display: block;
    padding: 10px 22px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Glow effect on hover - matching the warm amber glow from the logo */
.nav-link:hover,
.nav-link:focus {
    color: var(--glow-bright);
    text-shadow:
        0 0 7px rgba(212, 197, 160, 0.6),
        0 0 15px rgba(212, 197, 160, 0.4),
        0 0 30px rgba(201, 181, 122, 0.3),
        0 0 50px rgba(201, 181, 122, 0.2);
}

.nav-link.active {
    color: var(--glow-bright);
    text-shadow:
        0 0 7px rgba(212, 197, 160, 0.6),
        0 0 15px rgba(212, 197, 160, 0.4),
        0 0 30px rgba(201, 181, 122, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===========================
   SECTIONS
   =========================== */
.cta-section {
    text-align: center;
    padding: 60px 24px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.glow-text {
    color: var(--glow-bright);
    text-shadow:
        0 0 7px rgba(212, 197, 160, 0.6),
        0 0 15px rgba(212, 197, 160, 0.4),
        0 0 30px rgba(201, 181, 122, 0.3),
        0 0 50px rgba(201, 181, 122, 0.15);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* ===========================
   BLANK PAGE CONTENT
   (sub-pages with sticky header)
   =========================== */
.page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(17, 17, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 197, 160, 0.1);
}

.page-header .header-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 24px;
    height: 80px;
    gap: 0;
}

.page-header .logo {
    width: auto;
    height: 50px;
}

.page-content {
    min-height: calc(100vh - 80px - 160px);
    display: flex;
  
    justify-content: center;
    padding: 60px 24px;
}

.page-content .section-title {
    font-size: 3rem;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    flex-shrink: 0;
    border-top: 1px solid rgba(212, 197, 160, 0.1);
    padding: 40px 24px;
    background-color: var(--bg-darker);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.social-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--glow-bright);
    filter: drop-shadow(0 0 8px rgba(212, 197, 160, 0.5));
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 768px) {
    .header-inner {
        padding: 30px 16px;
        gap: 20px;
    }

    .logo {
        width: 400px;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 20px;
        right: 16px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(17, 17, 16, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .nav-link {
        font-size: 2rem;
        padding: 16px 20px;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section {
        padding: 40px 16px 60px;
    }

    .page-header .header-inner {
        height: 70px;
        flex-direction: row;
    }

    .page-header .logo {
        height: 40px;
        width: auto;
    }

    .page-content .section-title {
        font-size: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-inner {
        padding: 24px 12px;
        gap: 16px;
    }

    .logo {
        width: 300px;
    }

    .mobile-menu-toggle {
        top: 16px;
        right: 12px;
    }

    .nav-link {
        font-size: 1.6rem;
        padding: 14px 16px;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .social-links {
        gap: 16px;
    }

    .page-header .header-inner {
        height: 60px;
        padding: 0 12px;
    }

    .page-header .logo {
        height: 35px;
    }

    .page-content .section-title {
        font-size: 1.6rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .logo {
        width: 700px;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 10px 28px;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 3rem;
    }

    .page-content .section-title {
        font-size: 3.5rem;
    }
}
