/**
 * Fear The End - Band Website Stylesheet
 * 
 * A modern, dark-themed stylesheet for a music band website featuring:
 * - Responsive design for mobile and desktop
 * - Dark theme with red accent colors (#de1738)
 * - Hero sections with background images/video
 * - Mobile-first navigation with hamburger menu
 * - Performance optimized (animations removed)
 */

/* ==========================================
   FONTS AND GLOBAL IMPORTS
   ========================================== */

/* ==========================================
    GLOBAL STYLES AND RESET
    ========================================== */
body {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #000; /* Dark theme background */
    color: #eee; /* Light text for contrast */
    padding-top: 110px; /* Reserve space for fixed navbar */
}

/* Mobile body padding adjustment */
@media (max-width: 768px) {
    body {
        padding-top: 65px; /* Further reduced space for smaller mobile navbar */
    }
}

/* Body text styling for better readability */
p {
    display: block;
    margin-bottom: 1.2em;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    max-width: 100%;
}

/* List styling for better block layout */
ul, ol {
    display: block;
    margin-bottom: 1.2em;
    padding-left: 2em;
}

li {
    display: list-item;
    margin-bottom: 0.5em;
    line-height: 1.6;
}

/* ==========================================
    TYPOGRAPHY AND HEADINGS
    ========================================== */

/* FadeIn animation for page titles */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main headings with gradient text effect */
h1 {
    font-size: 3.2em;
    /* Enhanced gradient from white to brand red with glow */
    background: linear-gradient(45deg, #fff, #de1738, #ff4757);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: block;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

/* Secondary headings with matching gradient and effects */
h2 {
    font-size: 2.4em;
    background: white;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    position: relative;
    display: block;
    margin-bottom: 15px;
    animation: fadeIn 1s ease-out 0.2s both;
}

/* ==========================================
   HEADER AND NAVIGATION
   ========================================== */
header {
    /* Enhanced liquid glass effect with red tones */
    background: linear-gradient(135deg, 
        rgba(222, 23, 56, 0.15) 0%,
        rgba(0, 0, 0, 0.85) 20%,
        rgba(222, 23, 56, 0.08) 40%,
        rgba(0, 0, 0, 0.9) 60%,
        rgba(222, 23, 56, 0.12) 80%,
        rgba(0, 0, 0, 0.8) 100%
    );
    
    /* Blur effect for modern glass appearance */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* Subtle border with red glow */
    /* border-bottom: 1px solid rgba(222, 23, 56, 0.3); */
    box-shadow: 
        0 4px 32px rgba(222, 23, 56, 0.1),
        0 8px 64px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Main navigation container */
.navbar {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    margin: 0 auto;
    min-height: 110px;
}

/* Enhanced Brand/logo styling in navigation */
.nav-brand a {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    font-size: 2.6em;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-block;
    
    /* Clean sophisticated gradient for "FEAR THE" text */
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8f9fa 25%, 
        #e9ecef 50%, 
        #dee2e6 75%, 
        #ced4da 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Refined text shadow for premium look */
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hover effect for the entire brand */
.nav-brand a:hover {
    /* Sophisticated glow on hover */
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.1),
        0 0 90px rgba(222, 23, 56, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Enhanced animated "END" text with refined effects */
.nav-brand .music-text {
    background: linear-gradient(135deg, 
        #ff4757 0%, 
        #de1738 25%, 
        #c0392b 50%, 
        #922b21 75%, 
        #641e16 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    margin-left: 12px;
    
    /* Refined text shadow with controlled glow */
    text-shadow: 
        0 0 25px rgba(222, 23, 56, 0.6),
        0 0 50px rgba(222, 23, 56, 0.3),
        0 0 75px rgba(222, 23, 56, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.6);
    
    opacity: 1;
    transform: none;
}

/* Navigation menu styling */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap; /* Ensure items stay in one line */
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap; /* Prevent individual menu items from wrapping */
}

.nav-menu a:hover {
    text-decoration: none;
}

/* ==========================================
   HERO SECTIONS
   ========================================== */
/* Base hero section styles */
.hero {
    position: relative;
    text-align: center;
    padding: 300px 20px;
    /* Default hero background with gradient overlay */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000), url('../img/Stevie_AlbumShoot_8.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 25%;
}

/* Homepage hero with image background */
.hero-home {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000), url('../img/Stevie_AlbumShoot_16.jpg');
    background-position: 0 45%;
    padding: 280px 20px;
}

/* ==========================================
   PAGE-SPECIFIC HERO BACKGROUNDS
   ========================================== */
/* Unique header images for each sub page */
.hero-album {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000), url('../img/background_album.jpeg');
    background-position: center;
    background-size: cover;
    padding: 200px 20px;
}

.hero-about {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000), url('../img/Stevie_AlbumShoot_6.jpg');
    background-position: 0 65%;
}

.hero-news {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000), url('../img/Stevie_AlbumShoot_11.jpg');
}

.hero-imprint {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000), url('../img/Stevie_AlbumShoot_5.jpg');
}

.hero-merch {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000), url("../img/Stevie_AlbumShoot_13.jpg");
}

/* ==========================================
    HERO CONTENT STYLING
    ========================================== */
/* Hero titles with custom font */
.hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 4.5em;
    color: #fff; /* Override gradient for hero titles to ensure visibility */
    background: none;
    -webkit-text-fill-color: #fff;
    opacity: 1;
    position: relative;
    text-shadow: 
        0 0 10px rgba(222, 23, 56, 0.3),
        0 0 20px rgba(222, 23, 56, 0.2),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero paragraph text styling */
.hero p {
    text-align: center;
    font-size: 1.4em;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 800px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Decorative divider line in hero sections */
.hero-divider {
    width: 80px;
    margin: 10px auto;
    border: none;
    border-top: 1px solid #de1738; /* Brand red accent line */
    opacity: 1;
}

/* Hero subtitle styling */
.hero-subtitle {
    font-size: 1.2em;
    font-weight: 600;
    color: #de1738;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 15px auto 0 auto;
    text-shadow: 0 0 10px rgba(222, 23, 56, 0.5);
    position: relative;
    z-index: 2;
}

/* Hero logo positioning (homepage) */
.hero-logo {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 25vw; /* Further reduced for smaller appearance */
    max-width: 120px; /* Further reduced for smaller appearance */
    z-index: 10;
}

/* Hero logo image */
.hero-logo img {
    width: 45%;
    height: auto;
    opacity: 1;
    max-width: 320px;
}

/* Parallax effect for mobile devices */
@media (max-width: 768px) {
    .hero-logo {
        position: fixed;
        top: 50%;
        transform: translate(-50%, -50%);
        will-change: transform;
        transition: transform 0.1s ease-out;
    }
    
    /* Parallax scroll effect - logo moves slower than scroll */
    .hero-logo.parallax {
        transform: translate(-50%, calc(-50% + var(--scroll-offset, 0px) * 1.2));
    }
}

/* ==========================================
   ALBUM SECTION STYLING
   ========================================== */
/* Album cover link wrapper */
.album-cover-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.album-cover-link:hover {
    transform: scale(1.05);
}

/* Album cover display placeholder */
.album-cover-placeholder {
    width: 280px;
    aspect-ratio: 1; /* Perfect square */
    background-color: #fff;
    background-image: url('../img/album_ashes.jpeg');
    background-size: cover;
    background-position: center;
    margin: 30px auto 40px auto;
    border-radius: 12px;
    overflow: hidden;
    
    /* Enhanced shadow and glow effects */
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(222, 23, 56, 0.3),
        0 0 30px rgba(222, 23, 56, 0.4),
        0 0 60px rgba(222, 23, 56, 0.2);
    
    opacity: 1;
}

.album-cover-placeholder:hover {
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 3px rgba(222, 23, 56, 0.5),
        0 0 50px rgba(222, 23, 56, 0.6),
        0 0 100px rgba(222, 23, 56, 0.3);
}

/* Mobile responsive album cover */
@media (max-width: 768px) {
    .album-cover-placeholder {
        width: 240px;
        margin: 25px auto 35px auto;
    }
}

@media (max-width: 480px) {
    .album-cover-placeholder {
        width: 200px;
        margin: 20px auto 30px auto;
    }
}

/* Album call-to-action section */
.album-cta {
    text-align: center;
    /* padding: 120px 20px; */
    position: relative;
    overflow: hidden;
    /* Blurry dark grey to black gradient background */
    background: linear-gradient(135deg, 
        #2a2a2a 0%,
        #1a1a1a 25%,
        #0f0f0f 50%,
        #080808 75%,
        #000000 100%);
    backdrop-filter: blur(10px);
}

/* Album background video */
.album-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    opacity: 0.3;
}

/* Album content wrapper */
.album-content {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding-bottom: 60px;
}

/* Album CTA Section for purchase button */
.album-cta-section {
    background: linear-gradient(135deg, 
        rgba(222, 23, 56, 0.1) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(222, 23, 56, 0.1) 100%
    );
    padding: 60px 20px;
    text-align: center;
    position: relative;
    margin: 40px 0;
}

.album-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(222, 23, 56, 0.05) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(222, 23, 56, 0.05) 100%
    );
    z-index: 1;
}

.album-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.album-cta-section h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #de1738, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.album-cta-section p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
}

.album-purchase-btn {
    font-size: 1.2em;
    padding: 15px 30px;
    background: linear-gradient(45deg, #de1738, #ff4757);
    border: 2px solid #de1738;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(222, 23, 56, 0.3);
}

.album-purchase-btn:hover {
    background: linear-gradient(45deg, #c0392b, #de1738);
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 23, 56, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .album-cta-section {
        padding: 40px 15px;
        margin: 30px 0;
    }
    
    .album-cta-section h2 {
        font-size: 2.2em;
    }
    
    .album-cta-section p {
        font-size: 1.1em;
    }
    
    .album-purchase-btn {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

/* Enhanced animated overlay effect for album section */
.album-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.03) 0%,
        transparent 50%),
    radial-gradient(circle at 70% 80%, 
        rgba(255, 255, 255, 0.02) 0%,
        transparent 50%),
    radial-gradient(circle at 20% 70%, 
        rgba(0, 0, 0, 0.1) 0%,
        transparent 50%),
    linear-gradient(45deg, 
        rgba(255, 255, 255, 0.01) 0%,
        rgba(0, 0, 0, 0.05) 25%,
        rgba(255, 255, 255, 0.015) 50%,
        rgba(0, 0, 0, 0.03) 75%,
        rgba(255, 255, 255, 0.01) 100%);
    animation: albumBackgroundFloat 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Additional floating elements */
.album-cta::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at 60% 40%, 
        rgba(255, 255, 255, 0.015) 0%,
        transparent 60%),
    radial-gradient(ellipse at 20% 90%, 
        rgba(0, 0, 0, 0.08) 0%,
        transparent 70%);
    animation: albumBackgroundDrift 25s ease-in-out infinite reverse;
    z-index: 1;
    pointer-events: none;
}

/* Keyframe animations for subtle movement */
@keyframes albumBackgroundFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(-10px, -15px) rotate(1deg) scale(1.02);
        opacity: 0.9;
    }
    50% {
        transform: translate(8px, -8px) rotate(-0.5deg) scale(0.98);
        opacity: 1;
    }
    75% {
        transform: translate(-5px, 12px) rotate(0.8deg) scale(1.01);
        opacity: 0.85;
    }
}

@keyframes albumBackgroundDrift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(12px, -10px) rotate(-1deg) scale(1.03);
        opacity: 0.8;
    }
    66% {
        transform: translate(-8px, 15px) rotate(0.7deg) scale(0.97);
        opacity: 0.9;
    }
}

/* Ensure content appears above overlay */
.album-cta > * {
    position: relative;
    z-index: 2;
}

/* Album tagline styling */
.album-cta .album-tagline {
    font-size: 1.5em;
    margin: 30px auto 40px auto;
    max-width: 800px;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 2px;
    
    opacity: 1;
    transform: none;
}

/* Mobile responsive tagline */
@media (max-width: 768px) {
    .album-cta .album-tagline {
        font-size: 1.8em;
        letter-spacing: 1px;
        margin: 20px auto 30px auto;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .album-cta .album-tagline {
        font-size: 1.4em;
        letter-spacing: 0.5px;
        margin: 15px auto 25px auto;
        padding: 0 10px;
    }
}

/* ==========================================
   BUTTONS AND INTERACTIVE ELEMENTS
   ========================================== */
/* Basic button styling */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
}

/* Enhanced album title styling */
.album-cta h2 {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    opacity: 0.5;
    transform: none;
}

/* Mobile responsive album title */
@media (max-width: 768px) {
    .album-cta h2 {
        font-size: 2.5em;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .album-cta h2 {
        font-size: 1.8em;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
}

/* Centered button styling for album section */
.album-cta .btn {
    display: block; /* Center button under album cover */
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    
    /* Enhanced button for album section */
    font-size: 1.2em;
    padding: 15px 30px;
    margin-top: 30px;
    
    /* Extra glow effect for album button */
    box-shadow: 
        0 6px 20px rgba(222, 23, 56, 0.4),
        0 3px 12px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(222, 23, 56, 0.3);
}

.album-cta .btn:hover {
    box-shadow: 
        0 12px 40px rgba(222, 23, 56, 0.6),
        0 6px 25px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(222, 23, 56, 0.5);
}

/* ==========================================
   MAIN CONTENT SECTIONS
   ========================================== */
/* Main content container with max width */
main {
    margin-top: -120px;
}
.content {
    max-width: 1600px;
    margin: auto;
    padding: 20px;
}

/* Responsive images in content sections */
.content img {
    width: 100%;
    height: auto;
}

/* ==========================================
   FLEXIBLE CONTENT LAYOUT
   ========================================== */
/* Flexible layout for text/image sections (mobile-first) */
.content-flex {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    gap: 20px;
    align-items: center;
}

/* Text and image containers in flex layout */
.content-flex .text,
.content-flex .image {
    width: 100%;
}

/* Image container with overflow hidden for effects */
.content-flex .image {
    position: relative;
    overflow: hidden;
}

/* Responsive images in flex layout */
.content-flex .image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gradient overlay effect on content images */
.content-flex .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Don't interfere with image interactions */
    /* Subtle gradient from dark edges to transparent center */
    background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, #000);
}

/* Desktop layout for content flex sections */
@media (min-width: 768px) {
    .content-flex {
        flex-direction: row; /* Side-by-side layout on desktop */
        align-items: flex-start;
        gap: 60px; /* Increased gap between text and image on desktop */
    }
    .content-flex .text,
    .content-flex .image {
        width: 50%; /* Equal width columns */
    }
    .content-flex .image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Desktop navbar optimizations */
    .navbar {
        padding: 0px 25px; /* Minimal padding on desktop */
        min-height: 60px; /* Updated height for desktop */
        align-items: center; /* Ensure all items are center-aligned */
    }
    
    /* Ensure nav menu is always horizontal on desktop */
    .nav-menu {
        display: block; /* Override any mobile hiding */
    }
    
    .nav-menu ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px; /* Compact spacing on desktop */
        align-items: center;
        margin: 0; /* Remove any margin */
        padding: 0; /* Remove any padding */
        list-style: none; /* Remove list bullets */
    }
    
    /* Hide hamburger on desktop */
    .hamburger {
        display: none;
    }
    
    /* Reduce brand text size on desktop for compact navbar */
    .nav-brand a {
        font-size: 1.1em; /* Much smaller for ultra compact navbar */
        letter-spacing: 1px; /* Minimal letter spacing */
        line-height: 1; /* Tight line height */
        margin: 0; /* Remove any margin */
        padding: 0; /* Remove any padding */
    }
    
    .nav-brand .music-text {
        margin-left: 5px; /* Minimal margin */
    }
    
    /* Compact menu items */
    .nav-menu a {
        font-size: 0.9em; /* Smaller menu text */
        line-height: 1; /* Tight line height */
        padding: 5px 10px; /* Minimal padding for compact design */
        margin: 0; /* Remove any margin */
    }
    
    /* Remove any header padding/margin on desktop */
    header {
        padding: 0; /* Remove any default padding */
        margin: 0; /* Remove any default margin */
    }
    
    /* Hide mobile social section on desktop */
    .mobile-social {
        display: none;
    }
}

/* ==========================================
    FOOTER STYLING
    ========================================== */
/* Main footer with dark background */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Mobile footer centering */
@media (max-width: 768px) {
    footer {
        text-align: center;
        padding: 15px 10px;
    }
    
    footer p {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
        margin-bottom: 15px;
    }
}

/* Footer links with brand color */
.footer-link {
    color: #de1738; /* Brand red for links */
    text-decoration: none;
}

/* ==========================================
   MOBILE NAVIGATION
   ========================================== */
/* Enhanced hamburger menu button */
.hamburger {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #fff;
    background: none;
    border: none;
    padding: 12px;
    border-radius: 12px;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}

.hamburger:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Mobile navigation styles */
@media (max-width: 600px) {
         /* Enhanced mobile navigation menu */
     .nav-menu {
         position: fixed;
         top: 0;
         right: 0;
         width: 80%;
         max-width: 320px;
         height: 100vh;
         background: linear-gradient(145deg, 
             rgba(0, 0, 0, 0.4) 0%,
             rgba(0, 0, 0, 1.0) 20%,
             rgba(20, 20, 20, 0.95) 50%,
             rgba(40, 40, 40, 0.8) 100%);
         box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
         /* border-left: 2px solid rgba(222, 23, 56, 0.3); */
         transform: translateX(100%);
         z-index: 1000;
         overflow-y: auto;
         padding-top: 80px;
     }
    
    /* Active menu state with slide-in */
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Enhanced vertical menu layout */
    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 0;
        padding: 20px;
        margin: 0;
        list-style: none;
    }
    
    /* Enhanced mobile menu items */
    .nav-menu li {
        border-bottom: 1px solid rgba(222, 23, 56, 0.1);
        margin-bottom: 5px;
        opacity: 1;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 18px 15px;
        font-size: 1.1em;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        margin-bottom: 5px;
    }
    
    /* Remove desktop hover effects in mobile */
    .nav-menu a::after {
        display: none;
    }
    
    /* Mobile-specific hover/active effects */
    .nav-menu a:hover,
    .nav-menu a:active,
    .nav-menu a.active {
        background: linear-gradient(135deg, 
            rgba(222, 23, 56, 0.15) 0%,
            rgba(222, 23, 56, 0.05) 100%);
        color: #de1738;
        box-shadow: 0 4px 15px rgba(222, 23, 56, 0.2);
        text-shadow: 0 0 10px rgba(222, 23, 56, 0.5);
    }
    
    /* Social buttons section in mobile menu */
    .mobile-social {
        margin-top: 40px;
        padding: 20px;
        border-top: 2px solid rgba(222, 23, 56, 0.2);
        opacity: 1;
    }
    
    .mobile-social h4 {
        color: #fff;
        font-size: 0.9em;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        text-align: center;
        opacity: 0.8;
    }
    
    .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .mobile-social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, 
            rgba(222, 23, 56, 0.1) 0%,
            rgba(222, 23, 56, 0.05) 100%);
        border: 2px solid rgba(222, 23, 56, 0.3);
        border-radius: 50%;
        color: #fff;
        font-size: 1.4em;
        text-decoration: none;
    }
    
    .mobile-social-icons a:hover {
        background: linear-gradient(135deg, 
            rgba(222, 23, 56, 0.3) 0%,
            rgba(222, 23, 56, 0.15) 100%);
        border-color: #de1738;
        color: #de1738;
        box-shadow: 0 5px 20px rgba(222, 23, 56, 0.4);
    }
    
    /* Instagram specific styling */
    .mobile-social-icons a[aria-label="Instagram"]:hover {
        background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
        border-color: #833ab4;
        color: #fff;
    }
    
    /* Spotify specific styling */
    .mobile-social-icons a[aria-label="Spotify"]:hover {
        background: #1db954;
        border-color: #1db954;
        color: #fff;
    }
    
    /* Show hamburger button on mobile */
    .hamburger {
        display: block;
    }
    
    /* Allow navbar to wrap on mobile */
    .navbar {
        flex-wrap: wrap;
        position: relative;
        z-index: 1001;
    }
    
    /* Overlay for mobile menu */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ==========================================
   EMBEDDED CONTENT
   ========================================== */
/* Spotify embed container */
.spotify-preview {
    max-width: 660px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Responsive Spotify iframe */
.spotify-preview iframe {
    width: 100%;
    border: none;
}

/* ==========================================
   SOCIAL MEDIA LINKS
   ========================================== */
/* Social icons container in footer */
.social-icons {
    margin-bottom: 10px;
}

/* Individual social media icons */
.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.8em;
    text-decoration: none;
}

/* Social icon hover effect */
.social-icons a:hover {
    color: #de1738; /* Change to brand red on hover */
}

/* ==========================================
   ENHANCED VISUAL EFFECTS
   ========================================== */
/* Enhanced hero section with multiple overlays */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(222, 23, 56, 0.1) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

/* Enhanced album cover with glow effect */
.album-cover-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(222, 23, 56, 0.2);
}

/* Enhanced button styling */
.btn {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 12px 24px;
    
    background: #de1738;
    border: 1px solid #de1738;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.btn:hover {
    background: #c0392b;
    border-color: #c0392b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Enhanced navigation */
.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #de1738, #ff4757);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #de1738;
    text-shadow: 0 0 10px rgba(222, 23, 56, 0.5);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Enhanced content sections */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    color: #ffffff;
}

.content-flex .image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Professional typography enhancements */
h1, h2 {
    cursor: default;
}

/* Special effects for section titles */
.content h2 {
    margin-bottom: 20px;
    position: relative;
}

/* Enhanced footer */
footer {
    border-top: 1px solid rgba(222, 23, 56, 0.1);
}

/* Responsive enhancements for mobile */
@media (max-width: 768px) {
    /* Make hero logo smaller on mobile devices */
    .hero-logo {
        width: 20vw; /* Further reduced for mobile devices */
        max-width: 80px; /* Further reduced for mobile devices */
    }
    
    /* Adjust title sizes and effects for mobile */
    h1 {
        font-size: 2.4em;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    .hero h1 {
        font-size: 3em;
    }
    
    /* Hero paragraph text on mobile */
    .hero p {
        font-size: 1.2em;
        max-width: 90%;
        margin: 15px auto;
        line-height: 1.5;
    }
    
    /* Hero subtitle on mobile */
    .hero-subtitle {
        font-size: 1em;
        letter-spacing: 2px;
        margin: 10px auto 0 auto;
    }
    
    /* Mobile navbar enhancements */
    .navbar {
        padding: 8px 15px;
        min-height: 55px;
    }
    
    .nav-brand a {
        font-size: 1.4em;
        letter-spacing: 1px;
        margin-top: 10px;
    }
    
    .nav-brand .music-text {
        margin-left: 8px;
    }
    
    /* Simplify header on mobile for performance */
    header {
        background: linear-gradient(135deg, 
            rgba(222, 23, 56, 0.12) 0%,
            rgba(0, 0, 0, 0.88) 50%,
            rgba(222, 23, 56, 0.1) 100%
        );
    }
}

/* ==========================================
   MERCH PRODUCT GRID LAYOUT
   ========================================== */
/* Product grid container */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Individual product card */
.product-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(222, 23, 56, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(222, 23, 56, 0.3);
    border-color: rgba(222, 23, 56, 0.5);
}

/* Product image container */
.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(222, 23, 56, 0.1), rgba(0, 0, 0, 0.3));
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-img.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 5;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

/* Product overlay with category */
.product-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(222, 23, 56, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sold out badge */
.sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #de1738;
    box-shadow: 0 0 20px rgba(222, 23, 56, 0.5);
    z-index: 10;
}

.sold-out-badge span {
    color: #de1738;
    text-shadow: 0 0 10px rgba(222, 23, 56, 0.8);
}

/* Product information section */
.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.4em;
    margin: 0 0 15px 0;
    background: linear-gradient(45deg, #fff, #de1738);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.product-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.product-price {
    font-size: 1.8em;
    font-weight: bold;
    color: #de1738;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(222, 23, 56, 0.3);
}

/* Product button styling */
.product-btn {
    width: auto;
    text-align: center;
    padding: 12px 20px;
    margin-top: 10px;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    
    background: #de1738;
    border: 1px solid #de1738;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.product-btn:hover {
    background: #c0392b;
    border-color: #c0392b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Disabled button styling */
.product-btn.disabled {
    background: #666;
    border-color: #666;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-btn.disabled:hover {
    background: #666;
    border-color: #666;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: none;
}

/* Sold out product card styling */
.product-card.sold-out {
    opacity: 0.8;
}

.product-card.sold-out .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.product-card.sold-out .product-title {
    opacity: 0.7;
}

.product-card.sold-out .product-price {
    opacity: 0.7;
}

/* Responsive design for product grid */
@media (max-width: 768px) {
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2em;
    }
    
    .product-price {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .product-card {
        margin: 0 10px;
    }
    
    .product-image {
        height: 240px;
    }

    .carousel-control {
        padding: 10px 15px;
        font-size: 1.4em;
        border-radius: 50%;
    }

    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.1em;
    }
    
    .product-description {
        font-size: 0.9em;
    }
    
    .product-price {
        font-size: 1.3em;
    }
    
    .product-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}

/* Fullscreen product image modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 2000;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Legal links in footer */
.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Cookie banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #eee;
    padding: 15px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    flex-wrap: wrap;
}

#cookie-banner p {
    margin: 0;
    flex: 1 1 auto;
}

#cookie-banner button {
    background: #de1738;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    margin-left: 10px;
}

