/* Neon Tavern CSS Design System */

:root {
    --color-bg-dark: #120d09;
    --color-bg-panel: rgba(26, 18, 12, 0.6);
    --color-border: rgba(232, 176, 96, 0.2);
    --color-border-hover: rgba(232, 176, 96, 0.5);
    
    --color-copper: #c87c3a;
    --color-copper-glow: rgba(200, 124, 58, 0.35);
    --color-amber: #e8b060;
    --color-amber-glow: rgba(232, 176, 96, 0.5);
    
    --color-neon-gold: #ffdf9e;
    --color-neon-gold-glow: rgba(255, 223, 158, 0.6);
    
    --color-text-primary: #fbf6eb;
    --color-text-secondary: #ccbfac;
    --color-text-muted: #91826f;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    background-image: url('assets/images/anchor__stage_interior.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background dark overlay for readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 7, 5, 0.75); /* Darken the background */
    pointer-events: none;
    z-index: -1;
}

.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 30%, rgba(232, 176, 96, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(0,0,0,0.8) 0%, transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(0,0,0,0.8) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0705;
}
::-webkit-scrollbar-thumb {
    background: #20150e;
    border: 1px solid var(--color-border);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-amber);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-copper) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-amber), transparent);
    margin: 0 auto;
    box-shadow: 0 0 8px var(--color-amber-glow);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-copper) 100%);
    color: #120d09;
    box-shadow: 0 0 15px var(--color-amber-glow);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(232, 176, 96, 0.7);
}

.btn-secondary {
    background: rgba(26, 18, 12, 0.5);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-amber);
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(18, 13, 9, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-red {
    color: var(--color-copper);
}

.logo-amber {
    color: var(--color-amber);
    text-shadow: 0 0 8px var(--color-amber-glow);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-amber);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-primary);
}

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

.nav-back-link {
    color: var(--color-amber) !important;
    border: 1px solid rgba(232, 176, 96, 0.2);
    padding: 6px 14px !important;
    border-radius: 4px;
    font-size: 0.8rem !important;
}

.nav-back-link:hover {
    background: rgba(232, 176, 96, 0.1);
    border-color: var(--color-amber);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    position: relative;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    gap: 40px;
    z-index: 5;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-sub {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-copper);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-neon-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Amber Neon Sign Styling */
.neon-sign-amber-box {
    border: 4px solid var(--color-amber);
    padding: 24px 36px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    box-shadow: 
        0 0 15px var(--color-amber-glow),
        inset 0 0 15px var(--color-amber-glow);
    animation: flicker-amber 4s infinite alternate;
}

.neon-sign-amber {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff9ed;
    letter-spacing: 2px;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px var(--color-amber),
        0 0 20px var(--color-amber);
}

.neon-sign-open-gold {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-neon-gold);
    letter-spacing: 4px;
    margin-top: 10px;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px var(--color-neon-gold);
}

@keyframes flicker-amber {
    0%, 39%, 41%, 43%, 45%, 64%, 66%, 100% { opacity: 1; }
    40%, 44%, 65% {
        opacity: 0.9;
        text-shadow: 0 0 4px var(--color-amber);
        box-shadow: 0 0 6px var(--color-amber-glow);
    }
}

/* Music Section */
.music-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.music-container {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 48px;
    margin-top: 40px;
}

/* Album Card */
.album-card {
    background: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: fit-content;
}

.album-art-container {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.album-cover-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.album-art-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2b1d12 0%, #120e0a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.art-band {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
}

.art-album {
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-copper);
    margin-top: 8px;
}

.album-info h3 {
    font-size: 2.1rem;
    margin-bottom: 8px;
}

.album-meta {
    font-size: 0.85rem;
    color: var(--color-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.album-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* YouTube CTA */
.youtube-cta-container {
    background: linear-gradient(180deg, rgba(24, 18, 13, 0.9) 0%, rgba(13, 10, 7, 0.95) 100%);
    border: 2px solid var(--color-amber);
    box-shadow: 0 0 15px var(--color-amber-glow);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.cta-content {
    max-width: 400px;
}

.cta-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.cta-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 6px;
}

.cta-btn svg {
    margin-top: -2px;
}

/* Band Section */
.band-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.member-card {
    background: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 0 15px rgba(232, 176, 96, 0.15);
}

.member-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.15;
    background: #000;
}

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

.member-role-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(18, 13, 9, 0.9);
    border: 1px solid var(--color-amber);
    color: var(--color-amber);
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.member-info {
    padding: 24px;
    flex: 1;
}

.member-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.about-text .about-lead {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-amber);
    margin-bottom: 30px;
    border-left: 3px solid var(--color-copper);
    padding-left: 20px;
    text-transform: uppercase;
}

.about-image-wrapper {
    background: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 16px;
}

.about-image {
    width: 100%;
    border-radius: 6px;
}

/* Footer Section */
.main-footer {
    background: #090705;
    border-top: 1px solid var(--color-border);
    padding: 80px 24px 30px;
    z-index: 5;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.6fr 1.4fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-amber);
}

.footer-disclosure h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-disclosure p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.02);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        margin-bottom: 40px;
    }
    
    .music-container {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #120d09;
        border-left: 1px solid var(--color-border);
        padding: 100px 40px;
        transition: var(--transition-smooth);
        z-index: 100;
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .track-item {
        grid-template-columns: 30px 1.5fr 40px;
    }
    
    .track-genre {
        display: none;
    }
    
    .audio-player {
        grid-template-columns: 1fr;
    }
}

/* Streaming Platforms Styling */
.streaming-platforms {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed var(--color-border);
}

.streaming-platforms h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--color-text-secondary);
}

.platform-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.platform-btn-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.02);
}

.platform-btn-link:hover {
    transform: translateY(-2px);
    border-color: var(--color-amber);
    background: rgba(255, 255, 255, 0.05);
}

.platform-btn-link.youtube:hover {
    color: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.platform-btn-link.spotify:hover {
    color: #1ed760;
    border-color: #1ed760;
    box-shadow: 0 0 10px rgba(30, 215, 96, 0.2);
}

.platform-btn-link.apple:hover {
    color: #fc3c44;
    border-color: #fc3c44;
    box-shadow: 0 0 10px rgba(252, 60, 68, 0.2);
}

