/* Gasoline Boots - High Resolution Minimalist Neon Desert UI */

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

:root {
    /* Luxury Color Palette */
    --luxury-black: #0a0a0a;
    --luxury-dark: #141414;
    --luxury-gray: #1f1f1f;
    --luxury-accent: #d4af37;
    --luxury-gold: #f4e4c1;
    --luxury-white: #fafafa;
    --luxury-muted: #888888;
    --luxury-border: rgba(212, 175, 55, 0.15);
    
    /* Legacy color mapping */
    --dark-void: var(--luxury-black);
    --dark-bg: var(--luxury-dark);
    --midnight: var(--luxury-gray);
    
    /* UI Colors */
    --text-primary: var(--luxury-white);
    --text-secondary: rgba(250, 250, 250, 0.7);
    --text-muted: var(--luxury-muted);
    --border-glow: var(--luxury-border);
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Typography */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Animations */
    --smooth-ease: cubic-bezier(0.23, 1, 0.32, 1);
    --luxury-ease: cubic-bezier(0.37, 0, 0.63, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--luxury-white);
    background: var(--luxury-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 320px;
    position: relative;
}

/* Ensure background shows through entire page */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/van-mountians.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0.6;
}

/* Desert Background - Fixed for entire page */
.desert-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('images/van-mountians.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s var(--smooth-ease);
    z-index: -1;
}

.desert-background.visible {
    opacity: 1;
}

.desert-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.3) 0%, 
        rgba(10, 10, 10, 0.6) 100%);
    pointer-events: none;
}

/* Logo Reveal Animation */
.logo-reveal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, var(--luxury-dark) 0%, var(--luxury-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s var(--smooth-ease);
}

.logo-reveal::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(244, 228, 193, 0.1) 0%, transparent 50%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-reveal.hiding {
    opacity: 0;
    pointer-events: none;
}

.logo-reveal.hidden {
    display: none;
}

.gb-pyramid-logo {
    transform-origin: center;
    animation: logoReveal 1.2s var(--luxury-ease);
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.5)) brightness(1.1);
    object-fit: contain;
}

@keyframes logoReveal {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.gb-pyramid-logo.transitioning {
    animation: none;
    transition: all 2s var(--smooth-ease);
}

.gb-pyramid-logo.as-moon,
img.as-moon {
    position: fixed;
    top: 150px;
    right: 15%;
    width: 100px;
    height: 100px;
    opacity: 0.8;
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.6)) brightness(1.2);
    z-index: 100;
    animation: floatMoon 6s ease-in-out infinite;
    object-fit: contain;
}

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

.skip-intro {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--luxury-border);
    color: var(--luxury-gold);
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.6s var(--smooth-ease);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s var(--luxury-ease) 1s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.skip-intro:hover {
    background: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: var(--luxury-black);
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--luxury-border);
    transform: translateY(-100%);
    transition: transform 0.6s var(--smooth-ease);
}

.site-header.visible {
    transform: translateY(0);
}

.main-nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.6s var(--smooth-ease);
}

.logo-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: all 0.6s var(--smooth-ease);
    object-fit: contain;
    display: block;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: var(--luxury-gold);
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    align-items: center;
}

.nav-links {
    display: none; /* Hidden on mobile by default */
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--luxury-white);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.6s var(--smooth-ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: width 0.6s var(--smooth-ease);
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

.mobile-menu-toggle {
    display: flex; /* Visible on mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 6px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--luxury-gold);
    transition: all 0.3s var(--smooth-ease);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('images/van-mountians.png') center/cover;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.3) 0%, 
        rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.desert-image {
    display: none; /* Remove this conflicting layer */
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(10, 79, 79, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(45, 27, 105, 0.2) 0%, transparent 40%),
                linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.neon-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.neon-line {
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    opacity: 0.3;
    animation: scanLine 8s linear infinite;
}

.neon-line-1 { top: 20%; animation-delay: 0s; }
.neon-line-2 { top: 50%; animation-delay: 2.67s; }
.neon-line-3 { top: 80%; animation-delay: 5.33s; }

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

.moon-container {
    position: absolute;
    top: 150px;
    right: 15%;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 50;
    text-align: center;
    padding: 0 var(--space-md);
    max-width: 1000px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s var(--smooth-ease) 0.3s;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 0.2rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--luxury-white);
    text-transform: uppercase;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.title-underline {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    margin: 0 auto 2rem;
    animation: pulse 2s var(--luxury-ease) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn {
    position: relative;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--luxury-border);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s var(--smooth-ease);
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--luxury-gold);
    -webkit-tap-highlight-color: transparent;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(10, 79, 79, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background: transparent;
    color: var(--luxury-gold);
    border: 1px solid var(--luxury-border);
}

.btn-primary:hover {
    background: var(--luxury-gold);
    color: var(--luxury-black);
    transform: translateY(-2px);
    border-color: var(--luxury-gold);
}

.btn-primary:hover .btn-glow {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--luxury-white);
    border: 1px solid var(--luxury-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--luxury-white);
    color: var(--luxury-black);
    transform: translateY(-2px);
    border-color: var(--luxury-white);
}

/* Sections - Mobile First */
section {
    padding: 3rem 1rem;
    position: relative;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.15rem;
    color: var(--luxury-gold);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Band Section */
.band-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 15, 61, 0.85) 100%);
    position: relative;
    overflow: hidden;
}

.band-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    animation: scanLine 6s var(--luxury-ease) infinite;
}

.band-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.band-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.member-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.5) 0%, rgba(31, 31, 31, 0.5) 100%);
    border: 1px solid var(--luxury-border);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.6s var(--smooth-ease);
    position: relative;
    padding: 1.5rem;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(10, 79, 79, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: var(--luxury-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.member-card:hover::before {
    opacity: 1;
}

.member-photo {
    position: relative;
    padding-bottom: 100%;
    background: linear-gradient(135deg, var(--purple-darker) 0%, var(--teal-darker) 100%);
    overflow: hidden;
}

.photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 4rem;
}

.member-info {
    padding: var(--space-md);
    text-align: center;
}

.member-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
    letter-spacing: 2px;
    color: var(--text-primary);
}

.member-role {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Music Section */
.music-section {
    background: rgba(10, 10, 10, 0.85);
    position: relative;
    backdrop-filter: blur(8px);
}

.releases {
    max-width: 1000px;
    margin: 0 auto;
}

.album-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    transition: all 0.4s ease;
}

.album-card:hover {
    border-color: var(--dark-purple);
    box-shadow: 0 20px 60px rgba(45, 27, 105, 0.3);
}

.artwork-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--luxury-dark) 0%, var(--luxury-gray) 50%, var(--luxury-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.artwork-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
}

.album-year {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.album-details h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
    color: var(--luxury-gold);
    text-transform: uppercase;
}

.album-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
    font-weight: 300;
}

.tracklist {
    margin-bottom: var(--space-md);
}

.tracklist ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    list-style: none;
    counter-reset: track-counter;
}

.tracklist li {
    counter-increment: track-counter;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid transparent;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.6s var(--smooth-ease);
    backdrop-filter: blur(10px);
}

.tracklist li::before {
    content: counter(track-counter, decimal-leading-zero) ". ";
    font-weight: 600;
    color: var(--accent-yellow);
    font-family: var(--font-display);
}

.tracklist li:hover {
    background: rgba(10, 79, 79, 0.1);
    border-left-color: var(--dark-teal);
    color: var(--text-primary);
    padding-left: var(--space-md);
}

.streaming-platforms {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.spotify-embed {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--luxury-border);
}

.spotify-embed iframe {
    display: block;
}

.platform-link {
    padding: 12px 28px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: all 0.6s var(--smooth-ease);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.platform-link:hover {
    background: rgba(10, 79, 79, 0.1);
    border-color: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 79, 79, 0.3);
}

/* Gallery Section */
.gallery-section {
    background: rgba(10, 10, 10, 0.85);
    position: relative;
    backdrop-filter: blur(8px);
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--luxury-dark);
    border: 1px solid var(--luxury-border);
    cursor: pointer;
    transition: all 0.6s var(--smooth-ease);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--smooth-ease);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.6s var(--smooth-ease);
}

.gallery-caption {
    color: var(--luxury-gold);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--luxury-gold);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Shows Section */
.shows-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.85) 100%);
    color: var(--text-primary);
    position: relative;
    backdrop-filter: blur(8px);
}

.shows-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.shows-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.show-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.4s var(--smooth-ease);
    position: relative;
    overflow: hidden;
}

.show-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 210, 63, 0.1), transparent);
    transition: left 0.6s ease;
}

.show-item:hover {
    transform: translateX(8px);
    border-color: var(--dark-teal);
    box-shadow: 0 10px 40px rgba(10, 79, 79, 0.3);
}

.show-item:hover::before {
    left: 100%;
}

.show-date {
    text-align: center;
    padding-right: var(--space-md);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.date-month {
    display: block;
    font-weight: 300;
    color: var(--luxury-gold);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.date-day {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.show-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    font-weight: 600;
}

.show-location,
.show-time {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0.25rem 0;
}

.btn-tickets {
    padding: 12px 32px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--dark-teal);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: all 0.6s var(--smooth-ease);
    position: relative;
    overflow: hidden;
}

.btn-tickets::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark-teal);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-tickets:hover {
    color: var(--dark-void);
}

.btn-tickets:hover::before {
    left: 0;
}

/* Time Traveler Section */
.traveler-section {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.85) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.traveler-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--luxury-dark) 0%, var(--luxury-gray) 50%, var(--luxury-dark) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-placeholder::after {
    content: 'TIME TRAVELER';
    position: absolute;
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 8px;
}

.traveler-story h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--dark-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.traveler-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-weight: 300;
}

.traveler-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.6s var(--smooth-ease);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(255, 210, 63, 0.2);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    background: linear-gradient(180deg, var(--accent-yellow), var(--dark-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
    letter-spacing: 2px;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    background: rgba(10, 10, 10, 0.85);
    color: var(--text-primary);
    position: relative;
    backdrop-filter: blur(8px);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.3rem;
    color: var(--luxury-gold);
    text-transform: uppercase;
}

.contact-info p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.email-link {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: transparent;
    border: 1px solid var(--luxury-border);
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.6s var(--smooth-ease);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.email-link:hover {
    background: var(--luxury-gold);
    color: var(--luxury-black);
    transform: translateY(-2px);
    border-color: var(--luxury-gold);
}

.social-media {
    margin-top: var(--space-lg);
}

.social-media h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    transition: all 0.6s var(--smooth-ease);
}

.social-icon:hover {
    background: rgba(10, 79, 79, 0.1);
    border-color: var(--dark-teal);
    color: var(--dark-teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(10, 79, 79, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 16px; /* Prevents zoom on iOS */
    transition: all 0.6s var(--smooth-ease);
    font-family: var(--font-body);
    backdrop-filter: blur(10px);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--dark-teal);
    background: rgba(10, 79, 79, 0.02);
    box-shadow: 0 0 20px rgba(10, 79, 79, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    padding: 1.25rem 3rem;
    background: transparent;
    border: 1px solid var(--luxury-border);
    color: var(--luxury-gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.6s var(--smooth-ease);
    font-size: 0.9rem;
}

.btn-submit:hover {
    background: var(--luxury-gold);
    color: var(--luxury-black);
    transform: translateY(-2px);
    border-color: var(--luxury-gold);
}

/* Footer */
.site-footer {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    padding: var(--space-lg) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    color: var(--luxury-gold);
    text-transform: uppercase;
}

.footer-icon {
    filter: drop-shadow(0 0 8px rgba(10, 79, 79, 0.4));
    object-fit: contain;
}

.copyright,
.footer-tagline {
    color: var(--text-muted);
    margin: var(--space-xs) 0;
    font-size: 0.875rem;
    font-weight: 300;
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet Styles - 768px and up */
@media (min-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 4rem;
        letter-spacing: 0.3rem;
    }
    
    .section-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        max-width: 600px;
    }
    
    /* Layout */
    section {
        padding: 5rem 2rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    /* Navigation */
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .logo-text {
        font-size: 1.3rem;
        letter-spacing: 0.15rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Buttons */
    .btn {
        display: inline-block;
        width: auto;
        padding: 1.25rem 3rem;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 2rem;
        max-width: none;
    }
    
    /* Grids */
    .band-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tracklist ol {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .traveler-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .show-item {
        display: grid;
        grid-template-columns: 120px 1fr auto;
        gap: 2rem;
    }
    
    .album-card {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 3rem;
        padding: 2rem;
    }
    
    .artwork-placeholder {
        height: 300px;
    }
}

/* Desktop Styles - 1024px and up */
@media (min-width: 1024px) {
    /* Typography */
    .hero-title {
        font-size: 6rem;
        letter-spacing: 0.5rem;
    }
    
    .section-title {
        font-size: 4rem;
        margin-bottom: 4rem;
        letter-spacing: 0.3rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }
    
    /* Layout */
    section {
        padding: 6rem 3rem;
    }
    
    .container {
        padding: 0 3rem;
    }
    
    .nav-container {
        padding: 0 3rem;
    }
    
    .main-nav {
        padding: 1.5rem 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 0.2rem;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    /* Grids */
    .band-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .traveler-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .album-card {
        grid-template-columns: 350px 1fr;
        padding: 3rem;
    }
    
    .artwork-placeholder {
        height: 350px;
    }
    
    .image-placeholder {
        height: 500px;
    }
}

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
    /* Typography */
    .hero-title {
        font-size: 8rem;
    }
    
    .section-title {
        font-size: 5rem;
    }
    
    /* Layout */
    section {
        padding: 8rem 4rem;
    }
    
    .container {
        padding: 0 4rem;
    }
    
    .nav-container {
        padding: 0 4rem;
    }
    
    .main-nav {
        padding: 2rem 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .logo-reveal {
        display: none;
    }
    
    .hero-section,
    .hero-content,
    .site-header {
        opacity: 1;
        transform: none;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}