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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    --color-bg: #050505;
    --color-bg-alt: #0a0a0a;
    --color-bg-nav: rgba(5, 5, 5, 0.85);
    --color-text: #eaeaea;
    --color-text-muted: #999;
    --color-accent: #d4af37; /* Gold */
    --color-accent-hover: #f2ce5b;
    --color-red: #8b0000;
    --color-red-hover: #b00101;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --blur: blur(10px);
    --transition: all 0.3s ease;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-accent); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

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

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 6rem 1.5rem; }
.container-alt { max-width: 1000px; padding: 6rem 1.5rem; margin: 0 auto; }

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 2px;
}
.section-title span { color: var(--color-accent); }

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.left { transform: translateX(-50px); }
.reveal.right { transform: translateX(50px); }
.reveal.scale { transform: scale(0.9); }
.reveal.active { opacity: 1; transform: translate(0) scale(1); }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 1.5rem 0; z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
    background: var(--color-bg-nav);
    backdrop-filter: var(--blur);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { height: 35px; transition: var(--transition); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    font-family: var(--font-heading);
    font-size: 1rem; letter-spacing: 1px;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute;
    width: 0; height: 1px; bottom: -4px; left: 50%;
    background-color: var(--color-accent);
    transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover { color: var(--color-accent); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a.merch-btn {
    border: 1px solid var(--color-accent);
    padding: 0.5rem 1.5rem; border-radius: 2px;
}
.nav-links a.merch-btn::after { display: none; }
.nav-links a.merch-btn:hover { background-color: var(--color-accent); color: var(--color-bg); }

.hamburger {
    display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001;
}
.hamburger .bar {
    width: 25px; height: 2px; background-color: var(--color-text); transition: var(--transition);
}
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background-color: var(--color-bg-alt);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 999; display: flex; flex-direction: column;
    padding-top: 6rem; padding-left: 2rem; gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}
.mobile-nav.open { right: 0; }
.mobile-nav a { font-family: var(--font-heading); font-size: 1.5rem; }

/* Hero Section */
.hero {
    position: relative; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('assets/images/hero_bg.jpg') center/cover no-repeat;
    opacity: 0.4; filter: grayscale(100%) contrast(1.2);
    animation: slowZoom 20s infinite alternate;
}
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 40%, var(--color-bg) 100%);
}
.hero-content {
    position: relative; z-index: 1; text-align: center;
    display: flex; flex-direction: column; align-items: center;
    gap: 2rem; padding: 0 1rem;
}
.main-logo {
    max-width: 80vw; width: 600px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
    animation: glowPulse 4s infinite alternate;
}
@keyframes glowPulse {
    0% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2)); }
    100% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6)); }
}
.subtitle {
    font-size: 1.2rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--color-text-muted);
}
.cta-button {
    font-family: var(--font-heading); font-size: 1.2rem;
    padding: 1rem 3rem; background-color: transparent;
    border: 1px solid var(--color-accent); color: var(--color-accent);
    text-transform: uppercase; letter-spacing: 2px;
    position: relative; overflow: hidden; z-index: 1; cursor: pointer;
    margin-top: 1rem;
}
.cta-button::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 0%; height: 100%; background-color: var(--color-accent);
    transition: width 0.4s ease; z-index: -1;
}
.cta-button:hover::before { width: 100%; }
.cta-button:hover { color: var(--color-bg); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.mouse {
    width: 36px; height: 60px; border: 2px solid var(--color-text); border-radius: 20px;
    display: flex; justify-content: center; padding-top: 10px; opacity: 0.7;
}
.wheel {
    width: 6px; height: 12px; background-color: var(--color-text); border-radius: 3px;
    animation: scroll 2s infinite;
}
@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* Sections Global */
.pattern-bg { position: relative; }
.pattern-bg::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Music Section & Discography */
.music-section .container { max-width: 1400px; }
.music-flex {
    display: flex; flex-direction: column; gap: 4rem; align-items: center; margin-top: 2rem;
}
.discography-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; width: 100%;
}
.album-card {
    position: relative; width: 100%; transition: transform 0.4s ease;
    cursor: pointer; display: block; text-decoration: none;
}
.album-card img {
    border-radius: 4px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    width: 100%; aspect-ratio: 1/1; object-fit: cover;
    transition: filter 0.4s ease, box-shadow 0.4s ease;
}
.album-card:hover { transform: translateY(-10px); }
.album-card:hover img {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}
.album-label {
    margin-top: 1rem; text-align: center;
    font-family: var(--font-heading); color: var(--color-accent);
    font-size: 0.9rem; letter-spacing: 1px;
}
.spotify-embed { width: 100%; max-width: 800px; margin: 0 auto; }

/* About Section */
.about-section {
    background-color: var(--color-bg-alt);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--color-text-muted); }
.social-button {
    display: inline-flex; align-items: center; gap: 0.8rem;
    margin-top: 1rem; padding: 0.8rem 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
}
.social-button:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--color-accent); color: var(--color-accent);
}
.image-wrapper {
    position: relative; padding-bottom: 110%; overflow: hidden; border-radius: 4px;
}
.image-wrapper img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; filter: grayscale(80%) sepia(20%) hue-rotate(330deg);
    transition: filter 0.5s ease, transform 0.5s ease;
}
.image-wrapper:hover img { filter: grayscale(0%); transform: scale(1.05); }

/* Gallery Section */
.gallery-section { padding: 6rem 0; }
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin-top: 2rem;
}
.gallery-item {
    position: relative; padding-bottom: 100%; overflow: hidden; border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); cursor: pointer;
}
.gallery-item img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; filter: grayscale(50%) contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
}
.gallery-item:hover img {
    filter: grayscale(0%); transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%; overflow: auto;
    background-color: rgba(0,0,0,0.9); backdrop-filter: blur(5px);
    justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.show { display: flex; opacity: 1; }
.lightbox-content {
    max-width: 90%; max-height: 90%; border-radius: 4px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    transform: scale(0.9); transition: transform 0.3s ease;
}
.lightbox.show .lightbox-content { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 20px; right: 35px;
    color: var(--color-text); font-size: 40px; font-weight: bold;
    cursor: pointer; transition: color 0.3s ease;
}
.lightbox-close:hover,
.lightbox-close:focus { color: var(--color-accent); text-decoration: none; cursor: pointer; }

/* Tour & Events Section */
.tour-list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin: 0 auto; }
.tour-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 2rem; background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 4px;
    transition: var(--transition);
}
.tour-item:hover {
    background: rgba(212, 175, 55, 0.05); border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}
.tour-date { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-accent); width: 120px; }
.tour-venue { flex: 1; font-size: 1.1rem; font-weight: 600; }
.tour-location { width: 150px; color: var(--color-text-muted); }
.btn-outline {
    padding: 0.6rem 2rem; border: 1px solid var(--color-text);
    text-transform: uppercase; font-family: var(--font-heading); font-size: 0.9rem;
}
.btn-outline.disabled {
    border-color: #333; color: #666; cursor: not-allowed; background: rgba(0,0,0,0.5);
}

/* Contact Section */
.contact-section { padding: 6rem 0; border-top: 1px solid rgba(255,255,255,0.05); }

/* Footer */
.footer { padding: 6rem 2rem 2rem; text-align: center; background-color: var(--color-bg); }
.footer-content {
    max-width: 800px; margin: 0 auto; display: flex; flex-direction: column;
    align-items: center; gap: 2rem;
}
.footer-symbol { width: 80px; height: auto; opacity: 0.8; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; }
.footer-links a:hover { color: var(--color-accent); }
.social-icons { display: flex; gap: 1.5rem; }
.social-icons a { color: var(--color-text-muted); }
.social-icons a:hover { color: var(--color-accent); transform: translateY(-3px); }
.copyright {
    color: var(--color-text-muted); font-size: 0.9rem; margin-top: 2rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .discography-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .tour-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .tour-date { margin-bottom: 0.5rem; }
}
