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

body {
    font-family: 'Courier New', 'Courier', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #8B0000;
    transition: padding 0.3s;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav a:hover {
    color: #8B0000;
}

/* Hamburger Menu (Mobile Only) */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   HERO SECTION - OPTIMIZED VERSION
   Features: Video + Poster + Void Gutters + Radial Gradient
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video fills entire background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Fallback background (shows while video loads or if no video set) */
.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Radial gradient overlay for cinematic "void" aesthetic */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
                                rgba(0, 0, 0, 0.4),
                                rgba(0, 0, 0, 0.85));
    z-index: 1;
}

/* "Void" side gutters - black bars for cinematic framing */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    width: 8vw;
    height: 100%;
    background: #000;
    z-index: 3;
}

.hero::before {
    left: 0;
}

.hero::after {
    right: 0;
}

/* Content appears above everything */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 1.5rem;
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 20px;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0px #000, 0 0 40px rgba(139,0,0,0.6);
    font-weight: 400;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    text-transform: uppercase;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #8B0000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

.btn:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139,0,0,0.5);
}

.btn-primary {
    background: #8B0000;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Section Styling */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 400;
    text-align: center;
    display: block;
}

/* Section title with animated underline - CENTERED */
.section-title {
    position: relative;
    display: inline-block;
    text-align: center;
}

/* Wrapper to center the inline-block h2 */
section {
    text-align: center;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    width: 100px;
    height: 2px;
    background: #8B0000;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease-out;
}

.section-title.in-view::after {
    transform: translateX(-50%) scaleX(1);
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spotify-embed {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stream-btn {
    padding: 1rem 2rem;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.stream-btn:hover {
    border-color: #8B0000;
    background: rgba(139,0,0,0.2);
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #8B0000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About Section */
.about {
    background: #0a0a0a;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    line-height: 2;
    color: #ccc;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    margin: 0 auto 3rem;
    display: block;
    border: 3px solid #8B0000;
    filter: contrast(1.2);
}

.about-tagline {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #8B0000;
    font-weight: 300;
    text-transform: uppercase;
    font-style: italic;
}

/* Tour Section */
.tour-list {
    max-width: 900px;
    margin: 0 auto;
}

.tour-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #0a0a0a;
    border: 1px solid #222;
    align-items: center;
    transition: border-color 0.3s;
}

.tour-item:hover {
    border-color: #8B0000;
}

.tour-date {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #8B0000;
}

.tour-venue {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tour-location {
    color: #888;
    letter-spacing: 1px;
}

/* Merch Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.merch-item {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.merch-item:hover {
    border-color: #8B0000;
    transform: translateY(-5px);
}

.merch-image {
    width: 100%;
    height: 300px;
    background: #111;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merch-image .placeholder {
    color: #444;
    font-size: 3rem;
}

.merch-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.merch-item .price {
    color: #8B0000;
    font-size: 1.5rem;
    margin: 1rem 0;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-email {
    font-size: 1.5rem;
    color: #8B0000;
    margin: 2rem 0;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #333;
    padding: 1rem 2rem;
}

.social-links a:hover {
    color: #8B0000;
    border-color: #8B0000;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: #000;
    border-top: 1px solid #8B0000;
    color: #666;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Cross Decoration */
.cross-decoration {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.1;
    font-size: 10rem;
    color: #8B0000;
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Show hamburger icon on mobile - positioned below nav border */
    .hamburger {
        display: flex !important;
        position: fixed;
        top: 2rem;
        right: 1.5rem;
        z-index: 1001;
    }
    
    /* Hide desktop nav, show as full-screen overlay */
    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        list-style: none;
        padding: 0;
        
        /* Hidden by default */
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
    }
    
    /* Show menu when active */
    nav ul.active {
        transform: translateX(0);
    }
    
    /* Mobile nav links */
    nav a {
        font-size: 1.5rem;
        letter-spacing: 3px;
        color: #fff;
        text-transform: uppercase;
        padding: 1rem 2rem;
        border: 2px solid transparent;
        transition: all 0.3s;
    }
    
    nav a:hover {
        color: #8B0000;
        border-color: #8B0000;
    }
    
    /* Add red line decoration to menu items */
    nav li {
        position: relative;
    }
    
    nav li::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: #8B0000;
        transition: width 0.3s;
    }
    
    nav li:hover::after {
        width: 80%;
    }
    
    /* FIX: Reduce letter-spacing on mobile for better centering */
    h2 {
        letter-spacing: 4px !important;
    }
    
    /* FIX: Add top padding to prevent nav overlap */
    section {
        padding-top: 6rem;
    }
    
    /* FIX: Ensure hero section is full height on mobile */
    .hero {
        min-height: 100vh !important;
        height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }
    
    /* FIX: Ensure hero content is visible and centered */
    .hero-content {
        position: relative !important;
        z-index: 10 !important;
        text-align: center !important;
        padding: 2rem 1rem !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
        letter-spacing: 8px !important;
        margin-bottom: 1.5rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #fff !important;
        text-shadow: 3px 3px 0px #000, 0 0 40px rgba(139,0,0,0.6) !important;
    }

    .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
    }

    .btn {
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 1rem 2rem !important;
        background: transparent !important;
        border: 2px solid #8B0000 !important;
        color: #fff !important;
    }
    
    .btn-primary {
        background: #8B0000 !important;
    }

    .cross-decoration {
        display: none;
    }
    
    /* Hide void gutters on mobile */
    .hero::before,
    .hero::after {
        display: none !important;
    }
    
    /* FIX Z-INDEX: Hide video on mobile, show fallback image with correct stacking */
    .hero-video {
        display: none !important;
    }
    
    .hero-video-fallback {
        display: block !important;
        z-index: 0 !important;
    }
    
    .hero-overlay {
        display: block !important;
        z-index: 1 !important;
    }

    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-links a {
        width: 100%;
        max-width: 300px;
    }
}
