/* ========================================
   DJ TUG - Site Web
   Charte : Noir, Violet néon, Cyan
   ======================================== */

/* Reset & Variables */
:root {
    --black: #0a0a0a;
    --dark: #1a1a2e;
    --purple: #b829e3;
    --cyan: #00f0ff;
    --white: #ffffff;
    --gray: #8a8a9a;
    --gray-light: #2a2a3e;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

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

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

a:hover {
    color: var(--purple);
}

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

/* ========================================
   Navigation
   ======================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s, padding 0.3s;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(184, 41, 227, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

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

.neon {
    color: var(--purple);
    text-shadow: 0 0 10px rgba(184, 41, 227, 0.5), 0 0 20px rgba(184, 41, 227, 0.3);
}

.neon-glow {
    color: var(--purple);
    text-shadow: 0 0 20px rgba(184, 41, 227, 0.8), 0 0 40px rgba(184, 41, 227, 0.4), 0 0 80px rgba(184, 41, 227, 0.2);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 0 0 20px rgba(184, 41, 227, 0.8), 0 0 40px rgba(184, 41, 227, 0.4);
    }
    to {
        text-shadow: 0 0 30px rgba(184, 41, 227, 1), 0 0 60px rgba(184, 41, 227, 0.6), 0 0 100px rgba(184, 41, 227, 0.3);
    }
}

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

.nav-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: width 0.3s;
}

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

.nav-links a:hover {
    color: var(--purple);
}

/* Menu mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* ========================================
   Réseaux sociaux flottants
   ======================================== */
.social-float {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 900;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
}

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

.social-icon:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(184, 41, 227, 0.5);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(184, 41, 227, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(5deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.hero-dj {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 15px;
    color: var(--gray);
}

.hero-name {
    display: block;
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: 10px;
    line-height: 1;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-location {
    font-size: 0.9rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--gray);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--purple);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ========================================
   Boutons
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), #8b1ab5);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(184, 41, 227, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(184, 41, 227, 0.6);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--cyan);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--black);
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--purple);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px rgba(184, 41, 227, 0.5);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ========================================
   A propos
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--dark), var(--gray-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.2rem;
    border: 1px solid var(--gray-light);
}

.about-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--purple);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Prestations
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 41, 227, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Formulaire de réservation */
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 3rem;
}

.booking-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--black);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 10px rgba(184, 41, 227, 0.2);
}

.form-group select option {
    background: var(--black);
}

.booking-form .btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
}

/* ========================================
   Événements
   ======================================== */
.events-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--gray);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--purple);
    color: var(--white);
    background: rgba(184, 41, 227, 0.15);
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--dark);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: all 0.3s;
}

.event-card:hover {
    border-color: var(--purple);
    transform: translateX(5px);
}

.event-card.hidden {
    display: none;
}

.event-date {
    text-align: center;
    min-width: 70px;
}

.event-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--purple);
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyan);
}

.event-year {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.event-location {
    color: var(--gray);
    font-size: 0.9rem;
}

.event-desc {
    color: var(--cyan);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.event-badge {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    white-space: nowrap;
}

.event-badge.upcoming {
    background: rgba(184, 41, 227, 0.2);
    color: var(--purple);
    border: 1px solid var(--purple);
}

.event-badge.past {
    background: rgba(138, 138, 154, 0.15);
    color: var(--gray);
    border: 1px solid var(--gray-light);
}

/* ========================================
   Musique / Lecteur
   ======================================== */
.music-player {
    background: var(--black);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.artwork-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.track-title {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.track-artist {
    color: var(--gray);
    font-size: 0.85rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.player-btn:hover {
    color: var(--purple);
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--purple) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(184, 41, 227, 0.5);
    color: var(--white) !important;
}

.player-progress {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 200px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--gray-light);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--purple);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s;
}

.time-current, .time-total {
    font-size: 0.8rem;
    color: var(--gray);
    min-width: 35px;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-volume span {
    font-size: 1rem;
}

#volumeSlider {
    width: 80px;
    accent-color: var(--purple);
}

/* Liste des tracks */
.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.track-item:hover,
.track-item.active {
    border-color: var(--purple);
    background: rgba(184, 41, 227, 0.08);
}

.track-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gray);
    min-width: 25px;
}

.track-item.active .track-num {
    color: var(--purple);
}

.track-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.track-info p {
    color: var(--gray);
    font-size: 0.85rem;
}

.track-duration {
    margin-left: auto;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Plateformes externes */
.external-platforms {
    text-align: center;
}

.external-platforms h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s;
    min-width: 180px;
}

.platform-card:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
    color: var(--white);
}

.platform-name {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.platform-desc {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ========================================
   Contact
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.contact-icon {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: 50%;
}

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

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: var(--dark);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 10px rgba(184, 41, 227, 0.2);
}

.contact-form .form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--dark);
    padding: 4rem 0 0;
    border-top: 1px solid var(--gray-light);
}

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

.footer-brand p {
    color: var(--gray);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

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

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social-links a {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-light);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ========================================
   Modal Mentions Légales
   ======================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 3rem;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--purple);
}

.modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-content h3 {
    font-size: 1.1rem;
    color: var(--cyan);
    margin: 1.5rem 0 0.8rem;
}

.modal-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* ========================================
   Toast notification
   ======================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--purple);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    z-index: 3000;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 20px rgba(184, 41, 227, 0.5);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s;
    }

    .nav-links.open {
        right: 0;
    }

    .social-float {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .event-card {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .music-player {
        flex-direction: column;
        align-items: stretch;
    }

    .player-controls {
        justify-content: center;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }

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

    .booking-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-name {
        letter-spacing: 5px;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}
