/* ============================================
   FUTURE ANTIQUE - BLACK & WHITE NEON THEME
   ============================================ */

:root {
    /* Colors */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #141414;
    --neon-white: #ffffff;
    --neon-light: #e0e0e0;
    --neon-gray: #a0a0a0;
    --text-primary: #ffffff;
    --text-secondary: #d0d0d0;
    --text-muted: #808080;
    --accent-glow: rgba(255, 255, 255, 0.3);
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto; /* Default cursor when tracker is disabled */
}

/* Only hide cursor when custom tracker is enabled */
body.cursor-tracker-enabled {
    cursor: none;
}

/* Hide cursor tracker element when not enabled */
body:not(.cursor-tracker-enabled) .cursor-tracker {
    display: none !important;
}

/* Ensure interactive elements have pointer cursor when tracker is disabled */
body:not(.cursor-tracker-enabled) a,
body:not(.cursor-tracker-enabled) button,
body:not(.cursor-tracker-enabled) .btn,
body:not(.cursor-tracker-enabled) input[type="submit"],
body:not(.cursor-tracker-enabled) input[type="button"],
body:not(.cursor-tracker-enabled) select {
    cursor: pointer;
}

body:not(.cursor-tracker-enabled) input[type="text"],
body:not(.cursor-tracker-enabled) input[type="email"],
body:not(.cursor-tracker-enabled) textarea {
    cursor: text;
}

/* ============================================
   CURSOR TRACKER
   ============================================ */

.cursor-tracker {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 0, 255, 0.8) 0%, rgba(255, 20, 147, 0.6) 30%, rgba(138, 43, 226, 0.4) 60%, transparent 100%);
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.8),
        0 0 40px rgba(255, 20, 147, 0.6),
        0 0 60px rgba(138, 43, 226, 0.4),
        inset 0 0 20px rgba(255, 0, 255, 0.5);
    animation: cursorPulse 2s ease-in-out infinite;
    transition: width 0.3s ease, height 0.3s ease;
}

.cursor-tracker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 0, 255, 1);
}

.cursor-tracker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 5px rgba(255, 0, 255, 1);
}

/* Reduced cursor pulse animation frequency */
@keyframes cursorPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
}

.cursor-tracker.hover {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 0, 255, 1) 0%, rgba(255, 20, 147, 0.8) 30%, rgba(138, 43, 226, 0.6) 60%, transparent 100%);
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 1),
        0 0 60px rgba(255, 20, 147, 0.8),
        0 0 90px rgba(138, 43, 226, 0.6);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.nav-brand .brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-white), var(--neon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--accent-glow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-white), var(--neon-light));
    transition: var(--transition-normal);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--neon-white);
    transition: var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 80px 0;
    margin-bottom: 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Removed expensive animation */
}

.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    /* Static glow - no animation for better performance */
}


.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-container {
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-logo {
    width: 95px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    animation: gentleFloat 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 0.9;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--neon-white), var(--neon-light), var(--neon-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    /* Removed glow animation for better performance */
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
}

.hero-tagline {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--neon-white), transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--neon-white);
    border-bottom: 2px solid var(--neon-white);
    transform: rotate(45deg);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-white), var(--neon-light));
    border-color: var(--neon-white);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: var(--neon-light);
    color: var(--neon-light);
}

.btn-secondary:hover {
    background: var(--neon-light);
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--section-padding);
    position: relative;
}

section + section {
    margin-top: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-white), var(--neon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-white), var(--neon-light));
    margin: 0 auto;
    box-shadow: 0 0 10px var(--neon-white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text .lead {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.stat-item:hover {
    border-color: var(--neon-white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--neon-white), var(--neon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ============================================
   SECTION HERO BANNER
   ============================================ */

.section-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 1;
}

.section-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* When section title is inside hero */
.section-hero-content .section-title {
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

.section-hero-content .title-underline {
    margin-bottom: 1.5rem;
}

.section-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-white), var(--neon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.section-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .section-hero {
        height: 300px;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .section-hero {
        height: 250px;
        margin-bottom: 2rem;
    }
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events {
    padding-top: 0 !important;
}

.events .section-hero {
    margin-bottom: 0;
}

.events .container {
    padding-top: 4rem;
}

.events-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--bg-tertiary);
    border: 2px solid var(--neon-light);
    color: var(--neon-white);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--bg-tertiary);
    color: var(--neon-white);
    border-color: var(--neon-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.events-content {
    display: none;
}

.events-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-normal);
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.event-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.event-card.past {
    opacity: 0.7;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--neon-white);
}

.date-day {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--neon-white);
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.event-location {
    color: var(--neon-white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-lineup {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.lineup-label {
    color: var(--text-muted);
}

.lineup-artists {
    color: var(--text-secondary);
}

.event-link {
    color: var(--neon-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.event-link:hover {
    color: var(--neon-light);
}

/* ============================================
   SOUND SYSTEM SECTION
   ============================================ */

.sound-system {
    background: var(--bg-secondary);
}

.sound-system-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 5rem;
}

.sound-system-intro .lead {
    font-size: 1.25rem;
    line-height: 1.8;
}

.sound-system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.sound-item {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sound-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.sound-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--neon-white);
}

.image-overlay {
    text-align: center;
}

.image-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-white);
    text-shadow: 0 0 20px var(--neon-white);
}

.sound-details {
    padding: 2rem;
}

.sound-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.sound-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sound-specs {
    list-style: none;
    padding-left: 0;
}

.sound-specs li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sound-specs li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-white);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.gallery-icon {
    font-size: 3rem;
    color: var(--neon-white);
    text-shadow: 0 0 20px var(--neon-white);
}

.video-item .video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   ARTISTS SECTION
   ============================================ */

.artists {
    background: var(--bg-secondary);
}

.artists-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 5rem;
}

.artists-intro .lead {
    font-size: 1.25rem;
    line-height: 1.8;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.artist-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.artist-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.artist-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-white), var(--neon-light));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--neon-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.avatar-placeholder {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.artist-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.artist-genre {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.artist-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.artist-link {
    color: var(--neon-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.artist-link:hover {
    color: var(--neon-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--neon-white);
    min-width: 30px;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

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

.social-links {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--neon-white);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background: var(--neon-white);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--neon-white), var(--neon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--neon-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .sound-system-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 1440px) {
    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 65vh;
        padding: 130px 0 60px 0;
    }
    
    .hero-logo {
        width: 85px;
    }
    
    .hero-title {
        font-size: clamp(2.75rem, 6.5vw, 5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.88rem, 1.6vw, 1.1rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-tagline {
        font-size: clamp(0.82rem, 1.3vw, 0.95rem);
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        min-height: 60vh;
        padding: 120px 0 50px 0;
        margin-bottom: 20px;
    }
    
    .hero-logo-container {
        margin-bottom: 1rem;
    }
    
    .hero-logo {
        width: 75px;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 5.5vw, 4rem);
        margin-bottom: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.82rem, 1.5vw, 1rem);
        margin-bottom: 0.45rem;
    }
    
    .hero-tagline {
        font-size: clamp(0.78rem, 1.2vw, 0.9rem);
        margin-bottom: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .about-stats {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 55vh;
    }
    
    .hero-logo {
        width: 70px;
    }
    
    .hero-title {
        font-size: clamp(1.9rem, 4.8vw, 3.2rem);
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}
