/* ============================
   Mystique Beats — Custom Styles
   ============================ */

/* Variables */
:root {
    --bg-deep: #0a0e2a;
    --bg-dark: #0d1b3e;
    --blue-royal: #3a7bd5;
    --cyan-glow: #5ce1e6;
    --gold: #d4a843;
    --white: #ffffff;
    --text-muted: #8a9cc5;
    --border-color: rgba(58, 123, 213, 0.25);
    --card-bg: rgba(13, 27, 62, 0.6);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-deep);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Cinzel Decorative', serif; }
h4, h5, h6 { font-family: 'Oswald', sans-serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.relative { position: relative; }
.text-center { text-align: center; }

/* Skip Link */
.skip-link {
    position: absolute; top: -100px; left: 1rem; z-index: 100;
    padding: 0.5rem 1rem; background: var(--blue-royal); color: var(--white);
    border-radius: 4px; transition: top 0.3s;
}
.skip-link:focus { top: 1rem; }

/* ============================
   Navigation
   ============================ */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: background 0.5s, box-shadow 0.5s;
}
.main-nav.scrolled {
    background: rgba(10, 14, 42, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-color);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem; letter-spacing: 0.2em; color: var(--white);
    transition: color 0.3s;
}
.nav-brand:hover { color: var(--cyan-glow); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-family: 'Oswald', sans-serif; font-size: 0.85rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted); transition: color 0.3s;
}
.nav-links a:hover { color: var(--cyan-glow); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--white);
    margin: 5px 0; transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================
   Hero
   ============================ */
.hero-section {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,14,42,0.4), rgba(10,14,42,0.2), rgba(10,14,42,0.9));
}
.hero-stars { position: absolute; inset: 0; pointer-events: none; }
.hero-content {
    position: relative; z-index: 10; text-align: center;
    padding: 1.5rem; max-width: 56rem; margin: 0 auto;
}
.hero-presents {
    font-family: 'Oswald', sans-serif; font-size: 0.85rem;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(3rem, 10vw, 8rem); font-weight: 700;
    line-height: 1.1; margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(92,225,230,0.6), 0 0 30px rgba(58,123,213,0.4),
                 0 0 60px rgba(58,123,213,0.2), 0 0 100px rgba(92,225,230,0.1);
}
.hero-title span { font-size: 0.65em; }
.hero-tagline {
    font-family: 'Oswald', sans-serif; font-size: clamp(1.1rem, 3vw, 1.5rem);
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan-glow);
}
.hero-date {
    font-family: 'Oswald', sans-serif; font-size: clamp(1rem, 2.5vw, 1.3rem);
    letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.5rem;
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
    font-style: italic; color: var(--text-muted); margin-top: 0.5rem;
}
.hero-venue-name {
    font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-top: 0.5rem;
}
.hero-details { margin-bottom: 2.5rem; }
.hero-bottom-fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 8rem;
    background: linear-gradient(to top, var(--bg-deep), transparent);
}

/* Buttons */
.btn-ticket {
    display: inline-block;
    font-family: 'Oswald', sans-serif; font-size: 1.1rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 1rem 2.5rem; border: 2px solid var(--blue-royal);
    color: var(--white); background: transparent;
    box-shadow: 0 0 15px rgba(58,123,213,0.4), 0 0 30px rgba(92,225,230,0.2),
                inset 0 0 15px rgba(58,123,213,0.1);
    transition: all 0.3s;
}
.btn-ticket:hover {
    background: rgba(58,123,213,0.2);
    box-shadow: 0 0 20px rgba(58,123,213,0.6), 0 0 40px rgba(92,225,230,0.4),
                0 0 60px rgba(58,123,213,0.2), inset 0 0 20px rgba(58,123,213,0.2);
}
.btn-ticket-large { font-size: 1.3rem; padding: 1.25rem 3.5rem; }

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(58,123,213,0.4), 0 0 30px rgba(92,225,230,0.2); }
    50% { box-shadow: 0 0 25px rgba(58,123,213,0.6), 0 0 50px rgba(92,225,230,0.3), 0 0 80px rgba(58,123,213,0.15); }
}
.pulse-glow { animation: pulseGlow 2.5s ease-in-out infinite; }

/* Card Glow */
.card-glow {
    box-shadow: 0 0 20px rgba(58,123,213,0.1);
    transition: box-shadow 0.3s;
}
.card-glow:hover {
    box-shadow: 0 0 20px rgba(58,123,213,0.3), 0 0 40px rgba(92,225,230,0.15);
}

/* ============================
   Sections
   ============================ */
.section { position: relative; padding: 6rem 0; overflow: hidden; }
.section h2 {
    font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(92,225,230,0.6), 0 0 30px rgba(58,123,213,0.4),
                 0 0 60px rgba(58,123,213,0.2);
}
.section-subtitle {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    font-style: italic; color: var(--text-muted); margin-bottom: 3rem;
}
.section-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.section-icon { color: var(--gold); font-size: 1.2rem; }
.section-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.06;
}
.section-bg-overlay { position: absolute; inset: 0; background: rgba(10,14,42,0.95); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-copy { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; }
.about-copy p + p { margin-top: 1.5rem; }
.decorative-divider { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.decorative-divider span { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(58,123,213,0.5), transparent); }
.decorative-divider em { color: var(--cyan-glow); font-size: 1.2rem; font-style: normal; }
.flyer-glow { position: relative; max-width: 380px; margin: 0 auto; }
.flyer-glow::before {
    content: ''; position: absolute; inset: -4px;
    background: linear-gradient(135deg, rgba(58,123,213,0.3), rgba(92,225,230,0.2), rgba(212,168,67,0.2));
    border-radius: 0.5rem; filter: blur(4px);
}
.flyer-glow img { position: relative; border-radius: 0.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

/* Artists */
.artist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.artist-card {
    background: var(--card-bg); backdrop-filter: blur(8px);
    border: 1px solid var(--border-color); border-radius: 0.5rem;
    padding: 2rem; text-align: center;
}
.artist-icon { font-size: 1.5rem; margin-bottom: 1rem; color: var(--cyan-glow); }
.artist-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.artist-role {
    font-family: 'Oswald', sans-serif; font-size: 0.75rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
}
.artist-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Experience */
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.experience-card {
    display: flex; gap: 1.25rem; align-items: flex-start;
    padding: 1.5rem; border-radius: 0.5rem;
    background: var(--card-bg); border: 1px solid rgba(58,123,213,0.15);
}
.experience-icon {
    flex-shrink: 0; width: 3rem; height: 3rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.3); font-size: 1.2rem;
}
.experience-card h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.1rem;
    letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.experience-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Venue */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.venue-info h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.5rem;
    letter-spacing: 0.05em; text-transform: uppercase;
}
.venue-former {
    font-family: 'Oswald', sans-serif; font-size: 0.85rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin: 0.5rem 0 1rem;
}
.venue-desc {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem;
}
.venue-address { font-size: 0.9rem; color: var(--text-muted); }
.venue-map {
    border-radius: 0.5rem; overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Tickets */
.ticket-icon { font-size: 2.2rem; margin-bottom: 1.5rem; }
.tickets-limited {
    font-family: 'Oswald', sans-serif; font-size: 1.1rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--cyan-glow); margin-bottom: 2.5rem;
}
.tickets-group { font-size: 0.9rem; color: var(--text-muted); margin-top: 2.5rem; }
.tickets-group a {
    color: var(--cyan-glow); text-decoration: underline;
    text-underline-offset: 4px; transition: color 0.3s;
}
.tickets-group a:hover { color: var(--gold); }

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-color); padding: 4rem 0;
    text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; padding: 0 1.5rem; }
.footer-brand {
    font-family: 'Cinzel Decorative', serif; font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-shadow: 0 0 10px rgba(92,225,230,0.6), 0 0 30px rgba(58,123,213,0.4);
}
.footer-social { display: flex; justify-content: center; gap: 1.5rem; margin: 1.5rem 0; }
.footer-social a { color: var(--text-muted); transition: color 0.3s; }
.footer-social a:hover { color: var(--cyan-glow); }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }
.footer-decor { color: rgba(138,156,197,0.5); font-size: 1.1rem; margin-top: 1rem; }

/* ============================
   Animations
   ============================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s, transform 0.8s; }
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.fade-in.visible, .fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
    .artist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(10,14,42,0.98); backdrop-filter: blur(12px);
        flex-direction: column; padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 0.75rem 1.5rem; }
    .about-grid, .venue-grid, .experience-grid, .artist-grid {
        grid-template-columns: 1fr;
    }
    .hero-bg { background-attachment: scroll; }
    .section { padding: 4rem 0; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(58,123,213,0.5); border-radius: 4px; }
