/* ====================================================
   ROBERTO GONZÁLEZ - EL PRÍNCIPE DE LA GUARACHA
   Premium Dark Website Styles
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* =========== CSS VARIABLES =========== */
:root {
    --black: #000000;
    --dark-1: #060606;
    --dark-2: #0c0c0c;
    --dark-3: #111111;
    --dark-4: #181818;
    --dark-5: #1e1e1e;

    /* Gold — más matizado, elegante, menos satinado */
    --gold: #b89a48;
    --gold-light: #d4b76a;
    --gold-dim: rgba(184, 154, 72, 0.1);
    --gold-glow: rgba(184, 154, 72, 0.22);

    /* Purple — más profundo, menos neon */
    --purple: #5b2da3;
    --purple-light: #8b5cf6;
    --purple-dim: rgba(91, 45, 163, 0.12);
    --purple-glow: rgba(139, 92, 246, 0.15);

    --blue: #1e3a8a;
    --blue-light: #3b82f6;
    --blue-dim: rgba(59, 130, 246, 0.08);

    --teal: #0d9488;
    --rose: #be123c;
    --orange: #c2410c;
    --pink: #be185d;

    --white: #ffffff;
    --white-60: rgba(255, 255, 255, 0.58);
    --white-30: rgba(255, 255, 255, 0.28);
    --white-10: rgba(255, 255, 255, 0.08);
    --white-5: rgba(255, 255, 255, 0.04);

    --text-primary: #efefef;
    --text-secondary: rgba(239, 239, 239, 0.65);
    --text-muted: rgba(239, 239, 239, 0.38);

    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.13);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --shadow-gold: 0 8px 40px rgba(184, 154, 72, 0.18);
    --shadow-purple: 0 8px 40px rgba(91, 45, 163, 0.18);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* =========== RESET & BASE =========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--black);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
}

/* =========== PARTICLE CANVAS =========== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.18;
}

/* =========== CONTAINER =========== */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

/* =========== GRADIENT BLOBS — sutiles y elegantes =========== */
/* Prevenir scroll horizontal asegurando que las secciones oculten superposiciones de blobs */
section {
    position: relative;
    overflow: hidden;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 12s ease-in-out infinite alternate;
}

.blob-purple { width: 600px; height: 600px; background: radial-gradient(circle, rgba(91,45,163,0.12) 0%, transparent 70%); top: -120px; right: -120px; }
.blob-gold { width: 450px; height: 450px; background: radial-gradient(circle, rgba(184,154,72,0.08) 0%, transparent 70%); bottom: 80px; left: -80px; animation-delay: -4s; }
.blob-blue { width: 700px; height: 700px; background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%); top: 60px; left: -120px; }
.blob-rose { width: 450px; height: 450px; background: radial-gradient(circle, rgba(190,18,60,0.07) 0%, transparent 70%); bottom: 0; right: -70px; animation-delay: -3s; }
.blob-teal { width: 550px; height: 550px; background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 70%); top: 80px; right: -60px; }
.blob-orange { width: 500px; height: 500px; background: radial-gradient(circle, rgba(194,65,12,0.07) 0%, transparent 70%); top: 40px; left: -120px; }
.blob-pink { width: 550px; height: 550px; background: radial-gradient(circle, rgba(190,24,93,0.07) 0%, transparent 70%); top: 0; right: 0; }
.blob-purple2 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); }

@keyframes blobPulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(20px, -15px); }
}

/* =========== SECTION TRANSITIONS — muy sutiles =========== */
.section-transition-purple { position: relative; background: linear-gradient(180deg, #000000 0%, #060308 30%, #090514 60%, #060308 85%, #000000 100%); }
.section-transition-blue { position: relative; background: linear-gradient(180deg, #000000 0%, #03060f 30%, #04080f 60%, #03060f 85%, #000000 100%); }
.section-transition-green { position: relative; background: linear-gradient(180deg, #000000 0%, #020807 30%, #030a08 60%, #020807 85%, #000000 100%); }
.section-transition-orange { position: relative; background: linear-gradient(180deg, #000000 0%, #080400 30%, #0c0500 60%, #080400 85%, #000000 100%); }
.section-transition-pink { position: relative; background: linear-gradient(180deg, #000000 0%, #080105 30%, #0b0108 60%, #080105 85%, #000000 100%); }
.section-transition-purple2 { position: relative; background: linear-gradient(180deg, #000000 0%, #070312 50%, #000000 100%); }

/* =========== SCROLL REVEAL ANIMATIONS =========== */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s ease forwards;
}

.reveal-up:nth-child(1) { animation-delay: 0.1s; }
.reveal-up:nth-child(2) { animation-delay: 0.2s; }
.reveal-up:nth-child(3) { animation-delay: 0.3s; }
.reveal-up:nth-child(4) { animation-delay: 0.4s; }
.reveal-up:nth-child(5) { animation-delay: 0.5s; }
.reveal-up:nth-child(6) { animation-delay: 0.6s; }

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* =========== TYPOGRAPHY =========== */
.text-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(184, 154, 72, 0.9);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(184, 154, 72, 0.35);
    padding: 0 0 6px 0;
    border-radius: 0;
    margin-bottom: 22px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* =========== BUTTONS — refinados, sin gradientes agresivos =========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    padding: 13px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-sans);
    text-transform: uppercase;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 154, 72, 0.3);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    padding: 12px 26px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-full { width: 100%; justify-content: center; }

/* =========== NAVIGATION =========== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}

#navbar.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-rg {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 1px;
    background: var(--gold);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-nav-tickets {
    font-size: 0.78rem;
    font-weight: 600;
    color: #000;
    background: var(--gold);
    padding: 8px 18px;
    border-radius: 3px;
    transition: var(--transition);
    margin-left: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-nav-tickets:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(184, 154, 72, 0.3);
    background: var(--gold-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* =========== MOBILE MENU =========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 100vw);
    height: 100vh;
    background: var(--dark-2);
    border-left: 1px solid var(--border);
    z-index: 999;
    padding: 100px 32px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.mobile-link:hover {
    color: var(--gold);
    background: var(--gold-dim);
    border-color: rgba(201, 168, 76, 0.2);
}

/* =========== HERO SECTION =========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroBgZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroBgZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.97) 0%,
        rgba(0, 0, 0, 0.88) 40%,
        rgba(0, 0, 0, 0.55) 70%,
        rgba(0, 0, 0, 0.72) 100%
    );
}

/* Sound Wave Animation */
.sound-wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding: 0 20px;
    z-index: 1;
    opacity: 0.12;
}

.wave-bar {
    width: 3px;
    background: linear-gradient(to top, var(--gold), var(--purple-light));
    border-radius: 3px;
    animation: waveAnimation 1.5s ease-in-out infinite alternate;
}

.wave-bar:nth-child(odd) { animation-delay: -0.3s; }
.wave-bar:nth-child(3n) { animation-delay: -0.6s; }
.wave-bar:nth-child(5n) { animation-delay: -0.9s; }
.wave-bar:nth-child(7n) { animation-delay: -1.2s; }

@keyframes waveAnimation {
    0% { height: 8px; }
    100% { height: 60px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 120px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(184, 154, 72, 0.3);
    border-radius: 3px;
    padding: 7px 14px;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(184, 154, 72, 0.85);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 3s infinite;
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 10vw, 8.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.hero-title-name {
    display: block;
}

.accent-gold {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
    filter: none;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    text-transform: none;
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-plus {
    font-size: 1.1rem;
    color: var(--gold);
    vertical-align: super;
    font-family: var(--font-sans);
    font-weight: 400;
}

.stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.08);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeIn 2s ease 1.5s forwards;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    transform: rotate(90deg);
    transform-origin: center;
    white-space: nowrap;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -8px; opacity: 1; }
    100% { top: 68px; opacity: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* =========== ABOUT SECTION =========== */
.about-section {
    padding: 120px 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}

.about-img:hover {
    transform: scale(1.03);
    filter: brightness(1);
}

.img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 50%,
        rgba(201, 168, 76, 0.12) 100%
    );
    pointer-events: none;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-badge-float svg {
    color: var(--gold);
    flex-shrink: 0;
}

.float-badge-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.float-badge-sub {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.about-content {
    padding-right: 20px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--gold);
}

.about-skills {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
}

.skill-item {}

.skill-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.skill-bar {
    height: 5px;
    background: var(--white-10);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-full);
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-about { margin-top: 8px; }

/* =========== CONCERTS SECTION =========== */
.concerts-section {
    padding: 120px 0;
}

/* Featured Concert */
.featured-concert {
    position: relative;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 48px;
    transition: var(--transition);
}

.featured-concert:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: var(--shadow-gold);
}

.featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 3px;
    z-index: 2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.featured-concert-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-concert-img {
    position: relative;
    height: 440px;
    overflow: hidden;
}

.featured-concert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-concert:hover .featured-concert-img img {
    transform: scale(1.05);
}

.featured-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.featured-concert-img:hover .featured-img-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    transition: var(--transition);
    transform: scale(0.8);
}

.featured-concert-img:hover .play-btn {
    transform: scale(1);
}

.play-btn:hover {
    background: var(--gold-light);
    transform: scale(1.1) !important;
}

.featured-concert-info {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concert-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(184, 154, 72, 0.25);
    border-left: 3px solid var(--gold);
    padding: 10px 16px;
    border-radius: 0;
    margin-bottom: 24px;
    width: fit-content;
}

.date-month {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.date-day {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--white);
    font-weight: 700;
}

.date-year {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.featured-concert-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.featured-concert-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.concert-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.concert-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.concert-meta-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.ticket-options {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ticket-type {
    flex: 1;
    min-width: 130px;
    background: var(--white-5);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    transition: var(--transition);
}

.ticket-type:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.ticket-vip {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.05);
}

.ticket-vip-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
}

.ticket-name {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ticket-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.btn-ticket {
    display: block;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
}

.btn-ticket:hover {
    background: var(--gold);
    color: #000;
}

.btn-ticket-vip {
    background: var(--gold);
    color: #000;
}

.btn-ticket-vip:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.availability-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.avail-track {
    flex: 1;
    height: 4px;
    background: var(--white-10);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.avail-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rose), #f97316);
    border-radius: var(--radius-full);
    animation: availPulse 2s ease-in-out infinite;
}

@keyframes availPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.avail-percent {
    font-size: 0.75rem;
    color: var(--rose);
    white-space: nowrap;
    font-weight: 600;
}

/* Concert Grid */
.concerts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.concert-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
    display: flex;
    flex-direction: column;
}

.concert-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.1);
}

.concert-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 20px 0;
}

.concert-date-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white-5);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    min-width: 60px;
}

.concert-date-mini span:first-child {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.concert-date-mini span:last-child {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.1;
    color: var(--white);
}

.concert-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.concert-status.available {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.concert-status.limited {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    animation: limitedPulse 1.5s ease-in-out infinite;
}

.concert-status.sold-out {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes limitedPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.concert-card-body {
    padding: 20px;
    flex: 1;
}

.concert-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.concert-card-location,
.concert-card-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.concert-card-location svg,
.concert-card-time svg {
    color: var(--gold);
    flex-shrink: 0;
}

.concert-card-price {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.concert-card-price strong {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.concert-card-footer {
    padding: 0 20px 20px;
}

.btn-ticket-card {
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
}

.btn-ticket-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn-ticket-urgent {
    background: linear-gradient(135deg, var(--rose), #f97316);
    animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(225, 29, 72, 0); }
    50% { box-shadow: 0 0 20px rgba(225, 29, 72, 0.3); }
}

.btn-ticket-disabled {
    background: var(--white-10);
    color: var(--text-muted);
    cursor: not-allowed;
}

.btn-ticket-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* =========== MUSIC SECTION =========== */
.music-section {
    padding: 120px 0;
    overflow: hidden;
}

/* Music Visualizer */
.music-visualizer {
    margin-bottom: 60px;
}

.visualizer-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 80px;
}

.vbar {
    width: 6px;
    background: linear-gradient(to top, var(--gold), var(--purple-light), var(--blue-light));
    border-radius: 3px;
    animation: vizAnim 1.2s ease-in-out infinite alternate;
    opacity: 0.7;
}

.vbar:nth-child(1) { height: 20%; animation-delay: 0s; }
.vbar:nth-child(2) { height: 50%; animation-delay: 0.1s; }
.vbar:nth-child(3) { height: 80%; animation-delay: 0.2s; }
.vbar:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.vbar:nth-child(5) { height: 90%; animation-delay: 0.4s; }
.vbar:nth-child(6) { height: 40%; animation-delay: 0.5s; }
.vbar:nth-child(7) { height: 100%; animation-delay: 0.6s; }
.vbar:nth-child(8) { height: 70%; animation-delay: 0.7s; }
.vbar:nth-child(9) { height: 85%; animation-delay: 0.8s; }
.vbar:nth-child(10) { height: 50%; animation-delay: 0.9s; }
.vbar:nth-child(11) { height: 100%; animation-delay: 1.0s; }
.vbar:nth-child(12) { height: 65%; animation-delay: 1.1s; }
.vbar:nth-child(13) { height: 85%; animation-delay: 0.7s; }
.vbar:nth-child(14) { height: 45%; animation-delay: 0.5s; }
.vbar:nth-child(15) { height: 95%; animation-delay: 0.3s; }
.vbar:nth-child(16) { height: 55%; animation-delay: 0.2s; }
.vbar:nth-child(17) { height: 75%; animation-delay: 0.4s; }
.vbar:nth-child(18) { height: 40%; animation-delay: 0.6s; }
.vbar:nth-child(19) { height: 60%; animation-delay: 0.8s; }
.vbar:nth-child(20) { height: 25%; animation-delay: 1.0s; }
.vbar:nth-child(21) { height: 80%; animation-delay: 0.9s; }
.vbar:nth-child(22) { height: 30%; animation-delay: 0.1s; }
.vbar:nth-child(23) { height: 70%; animation-delay: 0.2s; }
.vbar:nth-child(24) { height: 20%; animation-delay: 0.3s; }

@keyframes vizAnim {
    0% { transform: scaleY(0.3); opacity: 0.4; }
    100% { transform: scaleY(1); opacity: 0.9; }
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.album-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.album-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.placeholder-cover {
    background: linear-gradient(135deg, #1a1520 0%, #261c36 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc2 { background: linear-gradient(135deg, #0d1a26 0%, #1a2d40 100%); }
.pc3 { background: linear-gradient(135deg, #1a1200 0%, #2d2000 100%); }
.pc4 { background: linear-gradient(135deg, #001a1a 0%, #002d2d 100%); }

.album-placeholder-icon {
    font-size: 3rem;
    opacity: 0.4;
    transition: var(--transition);
}

.album-card:hover .album-placeholder-icon {
    opacity: 0.7;
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-play-btn {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    transform: scale(0.8);
    font-family: inherit;
}

.album-card:hover .album-play-btn {
    transform: scale(1);
}

.album-play-btn:hover {
    background: var(--gold-light);
    transform: scale(1.1) !important;
}

.album-info {
    padding: 16px;
}

.album-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-year {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.album-tracks {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.album-dot {
    color: var(--text-muted);
}

/* Streaming Links */
.streaming-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.streaming-links p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.streaming-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.streaming-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-2px);
}

/* =========== GALLERY SECTION =========== */
.gallery-section {
    padding: 120px 0;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--dark-3);
    border: 1px solid var(--border);
    transition: var(--transition);
    min-width: 0; /* Fix flex/grid stretching */
    width: 100%;
}

.gallery-item-large {
    aspect-ratio: auto;
    min-height: 400px;
}

.gallery-item-wide {
    aspect-ratio: 16/7;
}

.gallery-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1020 0%, #140d1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px dashed rgba(201, 168, 76, 0.2);
    transition: var(--transition);
}

.gp2 { background: linear-gradient(135deg, #0a1520 0%, #071020 100%); }
.gp3 { background: linear-gradient(135deg, #150a05 0%, #200e07 100%); }
.gp4 { background: linear-gradient(135deg, #051510 0%, #071a14 100%); }
.gp5 { background: linear-gradient(135deg, #1a0a10 0%, #250e16 100%); }
.gp6 { background: linear-gradient(135deg, #0a0a1a 0%, #101020 100%); }

.gallery-item:hover .gallery-placeholder {
    border-color: rgba(201, 168, 76, 0.4);
}

.gallery-ph-icon { font-size: 2.5rem; opacity: 0.4; }
.gallery-ph-text { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-align: center; padding: 0 10px; word-wrap: break-word; }
.gallery-ph-sub { font-size: 0.7rem; color: var(--text-muted); opacity: 0.7; text-align: center; padding: 0 10px; word-wrap: break-word; }


.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 24px 16px 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.gallery-caption p {
    font-size: 0.75rem;
    color: var(--gold);
}

/* =========== TESTIMONIALS SECTION =========== */
.testimonials-section {
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc(50% - 12px);
    position: relative;
    background: linear-gradient(135deg, rgba(20, 10, 30, 0.8), rgba(10, 5, 15, 0.9));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px 40px;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-serif);
    font-size: 140px;
    line-height: 1;
    color: rgba(201, 168, 76, 0.05);
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(201, 168, 76, 0.03);
    transform: translateY(-5px);
}

.testimonial-stars {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-loc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.testi-btn {
    width: 44px;
    height: 44px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.testi-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.testi-dots {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    background: var(--white-30);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testi-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* =========== CTA SECTION =========== */
.cta-section {
    padding: 100px 0;
    overflow: hidden;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(20,10,30,0.8), rgba(12,5,20,0.9));
    backdrop-filter: blur(20px);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: floatIcon 3s ease-in-out infinite;
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

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

.cta-form {}

.cta-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.cta-input {
    flex: 1;
    width: 100%; /* Ensure no intrinsic width overflow */
    min-width: 0;
    background: var(--dark-5);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.cta-input:focus {
    border-color: var(--gold);
    background: var(--dark-4);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.cta-input::placeholder { color: var(--text-muted); }

.cta-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =========== CONTACT SECTION =========== */
.contact-section {
    padding: 120px 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(201, 168, 76, 0.25);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    word-break: break-word;
}

/* Ensure flex children can shrink */
.contact-item > div:not(.contact-icon) {
    min-width: 0;
}

.social-links-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--dark-5);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--dark-4);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-4); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* =========== FOOTER =========== */
.footer {
    background: var(--dark-1);
    border-top: 1px solid var(--border);
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 16px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-links-group h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group ul a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links-group ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-social a::before {
    content: '→';
    font-size: 0.75rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* =========== MODAL =========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--white-10);
    border: none;
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--white-20);
    color: var(--white);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: floatIcon 2s ease-in-out infinite;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-secondary-modal {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 12px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-secondary-modal:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .featured-concert-inner {
        grid-template-columns: 1fr;
    }

    .featured-concert-img {
        height: 260px;
    }

    .concerts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-column: span 2;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 100px 20px 80px;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px 30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-divider {
        display: none;
    }

    .about-section,
    .concerts-section,
    .music-section,
    .gallery-section,
    .videos-section,
    .testimonials-section,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .concerts-grid {
        grid-template-columns: 1fr;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
        min-height: 250px;
        aspect-ratio: auto; /* Fix locked aspect ratio expanding width */
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-inner {
        padding: 40px 20px;
    }

    .cta-input-group {
        flex-direction: column;
    }

    .nav-inner {
        padding: 12px 20px;
    }

    .logo-name {
        font-size: 0.85rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

    .hero-stats {
        gap: 16px 24px;
    }

    .concert-date-badge {
        padding: 8px 12px;
    }

    .featured-concert-info {
        padding: 28px 24px;
    }

    .ticket-options {
        flex-direction: column;
    }

    /* Vertical Stability Fix */
    .reveal-up {
        will-change: transform, opacity;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 80px 16px 60px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 14vw, 3rem) !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-desc {
        font-size: 0.75rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 12px 20px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .about-badge-float {
        right: 0;
        bottom: -15px;
        transform: scale(0.85); /* Make it slightly smaller to fit screen comfortably */
        transform-origin: bottom right;
    }

    .contact-form {
        padding: 24px 16px; /* Reduce padding on mobile */
    }
}
