/* ============================================
   LES GENTLEMEN - STYLE CSS PRINCIPAL
   Site Moderne & Coloré - Show Chippendales
   ============================================ */

/* --- Variables --- */
:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --secondary: #ff6f00;
    --accent: #ffd600;
    --gold: #f5c518;
    --dark: #0d0d1a;
    --dark-2: #1a1a2e;
    --dark-3: #16213e;
    --text: #e0e0e0;
    --text-light: #9e9e9e;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--secondary));
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-hover: 0 20px 60px rgba(233, 30, 99, 0.25);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.navbar.scrolled { background: rgba(13, 13, 26, 0.97); box-shadow: var(--shadow); }
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.3rem; }
.logo-icon { color: var(--gold); font-size: 1.5rem; }
.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 500; color: var(--text-light);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.btn-nav {
    background: var(--gradient) !important; color: var(--white) !important;
    font-weight: 600 !important; padding: 10px 24px !important; border-radius: 50px !important;
}
.btn-nav:hover { box-shadow: 0 4px 20px rgba(233, 30, 99, 0.5); transform: translateY(-2px); }
.btn-nav-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--gold)) !important;
}
.btn-nav-secondary:hover { box-shadow: 0 4px 20px rgba(255, 111, 0, 0.5); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 200px;
    background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm); padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); box-shadow: var(--shadow);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 0.85rem; }
.dropdown-menu a:hover { background: rgba(233, 30, 99, 0.15); color: var(--primary); }

/* Mobile Nav Toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); }

/* --- Hero --- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%);
}

/* Hero — Photos avec contour néon festif */
.hero-neon-photos {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-bottom: 36px;
}
.neon-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    width: 360px;
    height: 480px;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.neon-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 14px;
}
/* Bordure intérieure pour laisser voir le glow */
.neon-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 3px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    z-index: 2;
    pointer-events: none;
}
.neon-pink::before {
    background: linear-gradient(135deg, #e91e63, #ff4081, #f50057, #ff80ab, #e91e63);
    background-size: 300% 300%;
    animation: neonShift 3s ease-in-out infinite;
}
.neon-orange::before {
    background: linear-gradient(135deg, #ff6f00, #ffc107, #ff9800, #ffd54f, #ff6f00);
    background-size: 300% 300%;
    animation: neonShift 3s ease-in-out infinite 0.5s;
}
/* Glow extérieur */
.neon-pink {
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.5),
                0 0 40px rgba(233, 30, 99, 0.25),
                0 0 80px rgba(233, 30, 99, 0.1),
                inset 0 0 15px rgba(233, 30, 99, 0.15);
}
.neon-orange {
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.5),
                0 0 40px rgba(255, 111, 0, 0.25),
                0 0 80px rgba(255, 111, 0, 0.1),
                inset 0 0 15px rgba(255, 111, 0, 0.15);
}
.neon-frame:hover {
    transform: translateY(-8px) scale(1.03);
}
.neon-pink:hover {
    box-shadow: 0 0 25px rgba(233, 30, 99, 0.7),
                0 0 60px rgba(233, 30, 99, 0.4),
                0 0 120px rgba(233, 30, 99, 0.15),
                inset 0 0 20px rgba(233, 30, 99, 0.2);
}
.neon-orange:hover {
    box-shadow: 0 0 25px rgba(255, 111, 0, 0.7),
                0 0 60px rgba(255, 111, 0, 0.4),
                0 0 120px rgba(255, 111, 0, 0.15),
                inset 0 0 20px rgba(255, 111, 0, 0.2);
}
/* Label sous la photo */
.neon-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 0 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 3;
}
/* Animation du gradient néon */
@keyframes neonShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* Pulsation douce */
.neon-frame { animation: neonPulse 2.5s ease-in-out infinite; }
.neon-frame:nth-child(2) { animation-delay: 0.8s; }
@keyframes neonPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.08); }
}

@media (max-width: 768px) {
    .hero-neon-photos { gap: 16px; }
    .neon-frame { width: 260px; height: 350px; border-radius: 14px; }
}
@media (max-width: 480px) {
    .neon-frame { width: 160px; height: 220px; }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(233,30,99,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(255,111,0,0.1) 0%, transparent 60%);
}
.hero-particles {
    position: absolute; inset: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(255,214,0,0.3), transparent),
                      radial-gradient(2px 2px at 40px 70px, rgba(233,30,99,0.2), transparent),
                      radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.2), transparent),
                      radial-gradient(1px 1px at 130px 80px, rgba(255,111,0,0.2), transparent);
    background-size: 200px 100px;
    animation: particles 20s linear infinite;
}
@keyframes particles { to { transform: translateY(-100px); } }
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 900px; }
.hero-subtitle {
    font-size: 0.95rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700; line-height: 1.1; margin-bottom: 24px; color: var(--white);
}
.hero-location { font-size: 0.6em; font-family: var(--font); font-weight: 300; letter-spacing: 5px; text-transform: uppercase; }
.gradient-text {
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 1.15rem; color: var(--text-light); max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.trust-item { font-size: 0.85rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.trust-item i { color: var(--gold); }
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.hero-scroll a { color: var(--text-light); font-size: 1.5rem; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.btn-outline { border: 2px solid rgba(255,255,255,0.2); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(233,30,99,0.08); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* --- Sections --- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; padding: 6px 20px; border-radius: 50px;
    background: rgba(233, 30, 99, 0.12); color: var(--primary);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

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

/* --- Cards --- */
.card {
    background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 36px 28px;
    transition: var(--transition); display: block;
}
.card-hover:hover {
    transform: translateY(-8px); border-color: rgba(233, 30, 99, 0.3);
    box-shadow: var(--shadow-hover);
}
.card-icon {
    width: 60px; height: 60px; border-radius: 16px; background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--white); margin-bottom: 20px;
}
.card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.card-link { font-size: 0.85rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.card:hover .card-link { gap: 12px; }

/* --- Artist Cards --- */
.artist-card { display: block; text-align: center; transition: var(--transition); }
.artist-card:hover { transform: translateY(-8px); }
.artist-img {
    width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center top;
    border-radius: var(--radius); overflow: hidden; position: relative; margin-bottom: 16px;
}
.artist-overlay {
    position: absolute; inset: 0; background: rgba(233,30,99,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.artist-card:hover .artist-overlay { opacity: 1; }
.artist-cta {
    padding: 10px 24px; border: 2px solid var(--white); border-radius: 50px;
    color: var(--white); font-weight: 600; font-size: 0.85rem;
}
.artist-card h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.artist-card p { font-size: 0.8rem; color: var(--text-light); }

/* --- Tabs --- */
.equipe-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; }
.tab-btn {
    padding: 12px 32px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.1);
    background: transparent; color: var(--text-light); font-weight: 600;
    font-size: 0.95rem; cursor: pointer; transition: var(--transition);
    font-family: var(--font);
}
.tab-btn.active { background: var(--gradient); border-color: transparent; color: var(--white); }
.tab-btn:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- Zones Section --- */
.zones-section { background: var(--dark-2); }
.zones-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 30px; }
.zone-card {
    padding: 14px 24px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.08);
    background: var(--dark); display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; color: var(--text-light); transition: var(--transition);
}
.zone-card:hover { border-color: var(--primary); color: var(--primary); }
.zone-card i { color: var(--primary); font-size: 0.8rem; }
.zone-primary { background: var(--gradient); color: var(--white); border-color: transparent; }
.zone-primary i { color: var(--white); }
.zone-primary h3, .zone-card h3 { font-size: 0.9rem; font-weight: 600; }
.zone-primary p { font-size: 0.75rem; opacity: 0.8; }
.zones-note { text-align: center; color: var(--text-light); font-size: 0.9rem; }

/* --- CTA Section --- */
.cta-section { padding: 60px 0; }
.cta-box {
    background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 60px 40px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 70%);
}
.cta-box h2 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 16px; position: relative; }
.cta-box > p { color: var(--text-light); margin-bottom: 32px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; position: relative; }
.payment-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.badge {
    display: flex; align-items: center; gap: 6px; padding: 8px 16px;
    border-radius: 50px; background: rgba(255,255,255,0.06);
    color: var(--text-light); font-size: 0.8rem; font-weight: 500;
}
.badge i { color: var(--gold); }

/* --- Footer --- */
.footer { background: var(--dark-2); padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.footer-col p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 1rem; color: var(--white); margin-bottom: 20px; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: var(--text-light); }
.footer-col ul a:hover { color: var(--primary); }
.contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-light); }
.contact-list i { color: var(--primary); width: 16px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; color: var(--text-light);
    transition: var(--transition);
}
.social-links a:hover { background: var(--gradient); color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 0;
    text-align: center; font-size: 0.8rem; color: var(--text-light);
}
.footer-seo { margin-top: 8px; font-size: 0.7rem; opacity: 0.4; }

/* --- Bloc Demande de tarif négociable --- */
.negociation-box {
    background: linear-gradient(135deg, rgba(233,30,99,0.08), rgba(156,39,176,0.06));
    border: 1px solid rgba(233,30,99,0.25);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.negociation-box::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(233,30,99,0.12), transparent 60%);
    pointer-events: none;
}
.negociation-box > * { position: relative; z-index: 1; }
.negociation-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--gradient); color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 16px;
    box-shadow: 0 10px 30px rgba(233,30,99,0.4);
}
.negociation-box h2 { font-size: 1.9rem; color: var(--white); margin-bottom: 12px; }
.negociation-desc { color: var(--text-light); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.negociation-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.negociation-note { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.negociation-note i { color: var(--gold); margin-right: 6px; }

/* --- Partage profil artiste --- */
.profile-share {
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.profile-share-label { color: var(--text-light); font-size: 0.95rem; font-weight: 600; }
.profile-share-label i { color: var(--primary); margin-right: 6px; }
.profile-share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer; font-size: 1rem; text-decoration: none;
    transition: var(--transition);
}
.share-btn:hover {
    transform: translateY(-3px); background: var(--gradient);
    border-color: transparent; color: var(--white);
    box-shadow: 0 8px 20px rgba(233,30,99,0.35);
}
.share-btn.copied { background: #27ae60; border-color: transparent; }
.share-btn.copied i::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }

/* --- Animations --- */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* --- Reservation Page --- */
.reservation-hero {
    padding: 140px 0 60px; background: var(--dark-2); text-align: center;
}
.form-section { padding: 60px 0 100px; }
.reservation-form {
    max-width: 700px; margin: 0 auto; background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius);
    padding: 48px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block; font-size: 0.9rem; font-weight: 600; color: var(--white);
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1); background: var(--dark);
    color: var(--white); font-family: var(--font); font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(233,30,99,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.payment-section {
    margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
}
.payment-section h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 20px; text-align: center; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.payment-option {
    padding: 24px; border: 2px solid rgba(255,255,255,0.08); border-radius: var(--radius);
    text-align: center; cursor: pointer; transition: var(--transition); background: var(--dark);
}
.payment-option:hover, .payment-option.selected {
    border-color: var(--primary); background: rgba(233,30,99,0.08);
}
.payment-option i { font-size: 2rem; margin-bottom: 12px; display: block; }
.payment-option .paypal-icon { color: #0070ba; }
.payment-option .wero-icon { color: var(--gold); }
.payment-option h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.payment-option p { font-size: 0.8rem; color: var(--text-light); }

.amount-display {
    text-align: center; padding: 20px; background: rgba(233,30,99,0.08);
    border-radius: var(--radius-sm); margin-bottom: 24px;
}
.amount-display .label { font-size: 0.85rem; color: var(--text-light); }
.amount-display .amount { font-size: 1.8rem; font-weight: 800; color: var(--gold); }

.form-submit { text-align: center; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1.1rem; padding: 18px; }

.form-note { text-align: center; margin-top: 16px; font-size: 0.8rem; color: var(--text-light); }
.form-note i { color: var(--gold); }

/* --- Page Hero (inner pages) --- */
.page-hero {
    padding: 140px 0 60px; text-align: center;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}
.page-hero h1 { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.breadcrumb a { color: var(--primary); }

/* --- Gallery Grid --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
    aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden;
    position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
        background: var(--dark); flex-direction: column; padding: 40px 24px;
        transform: translateX(100%); transition: var(--transition);
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a { font-size: 1.1rem; padding: 16px; }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        background: rgba(255,255,255,0.03); border: none; box-shadow: none;
    }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: 1fr; }
    .reservation-form { padding: 28px; }
    .cta-box { padding: 40px 24px; }
    .testimonials-grid { grid-template-columns: 1fr !important; }
    .promo-bar p { font-size: 0.75rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
    .whatsapp-label { display: none; }
    .faq-grid { grid-template-columns: 1fr !important; }
    .tarifs-table { font-size: 0.85rem; }
    .tarifs-table th, .tarifs-table td { padding: 12px 10px; }
    .trust-badges { flex-direction: column; }
}

/* ============================================
   COMPOSANTS COMMERCIAUX
   ============================================ */

/* --- Bandeau Promo --- */
.promo-bar {
    background: var(--gradient);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}
.promo-bar p { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.promo-bar a { color: #fff; text-decoration: underline; font-weight: 700; }
.promo-bar a:hover { color: var(--accent); }
.promo-close {
    background: none; border: none; color: #fff; font-size: 1.3rem;
    cursor: pointer; margin-left: 16px; opacity: 0.8; line-height: 1;
}
.promo-close:hover { opacity: 1; }
.promo-bar.hidden { display: none; }
body:has(.promo-bar:not(.hidden)) .navbar { top: 38px; }

/* --- Témoignages --- */
.testimonials-section { background: var(--dark-2); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}
.testimonial-card:hover {
    border-color: rgba(233, 30, 99, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 14px;
    display: flex;
    gap: 3px;
}
.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}
.testimonial-author span {
    color: var(--text);
    font-size: 0.8rem;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.trust-badge {
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Bouton WhatsApp Flottant --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    width: auto;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float i {
    font-size: 1.7rem;
    flex-shrink: 0;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.whatsapp-float .whatsapp-label {
    font-size: 0.85rem;
    white-space: nowrap;
}

/* --- FAQ --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.faq-item {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(233,30,99,0.2); }
.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    user-select: none;
}
.faq-question i { color: var(--primary); transition: transform 0.3s; font-size: 0.8rem; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* --- Tableau Tarifs --- */
.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    background: var(--dark-2);
    border-radius: var(--radius);
    overflow: hidden;
}
.tarifs-table thead { background: var(--gradient); }
.tarifs-table th {
    padding: 16px 20px;
    text-align: left;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}
.tarifs-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--text-light);
    font-size: 0.9rem;
}
.tarifs-table tbody tr:hover { background: rgba(233,30,99,0.05); }
.tarifs-table .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}
.tarifs-table .popular-tag {
    background: var(--gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 8px;
    text-transform: uppercase;
}

/* ============================================
   SECTION VIDÉO SHOWCASE (Accueil)
   ============================================ */
.video-showcase-section { background: var(--dark-2); }
.video-showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}
.video-showcase-main {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
}
.video-showcase-main h3 {
    padding: 20px 24px;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}
.video-showcase-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.video-showcase-mini {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.video-showcase-mini:hover {
    border-color: rgba(233, 30, 99, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.video-showcase-mini h4 {
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
}
/* Embed responsive générique */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--dark);
}
.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Bandeau cookies RGPD */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.cookie-text {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.cookie-text i { color: var(--gold); font-size: 1.1rem; }
.cookie-text a { color: var(--primary); font-weight: 600; }
.cookie-buttons { display: flex; gap: 8px; }

/* YouTube facade lazy loading */
.youtube-facade {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--dark);
    cursor: pointer;
    border-radius: var(--radius-sm);
}
.youtube-facade img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.youtube-facade iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.youtube-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 68px; height: 48px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
.youtube-facade:hover .youtube-play-btn { opacity: 1; }

@media (max-width: 768px) {
    .video-showcase-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MODE FESTIF — Animations & Effets
   ============================================ */

/* Gradient animé multi-couleurs festif */
@keyframes festiveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes discoSpin {
    0% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.6; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.3; }
}

@keyframes confetti-fall {
    0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 8px rgba(233,30,99,0.6), 0 0 20px rgba(255,111,0,0.4); }
    50% { text-shadow: 0 0 16px rgba(233,30,99,0.9), 0 0 40px rgba(255,214,0,0.6), 0 0 60px rgba(233,30,99,0.4); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

@keyframes strobe {
    0%, 100% { filter: brightness(1) hue-rotate(0deg); }
    25% { filter: brightness(1.2) hue-rotate(45deg); }
    50% { filter: brightness(1.4) hue-rotate(90deg); }
    75% { filter: brightness(1.2) hue-rotate(45deg); }
}

/* Hero avec ambiance disco */
.hero {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0d2e 25%, #2e0d1a 50%, #0d1a2e 75%, #0d0d1a 100%);
    background-size: 400% 400%;
    animation: festiveGradient 20s ease infinite;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(233,30,99,0.15) 0%, transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(255,214,0,0.12) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255,111,0,0.08) 0%, transparent 45%);
    animation: discoSpin 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Gradient text animé (plus vibrant) */
.gradient-text {
    background: linear-gradient(90deg, #e91e63 0%, #ff4081 15%, #ff6f00 30%, #ffd600 45%, #ff6f00 60%, #ff4081 75%, #e91e63 90%, #ff4081 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* Titre avec effet néon pulsant */
.hero-title, .section-title {
    animation: neonPulse 3s ease-in-out infinite;
}

/* Boutons festifs */
.btn-primary {
    background: linear-gradient(135deg, #e91e63 0%, #ff6f00 50%, #ffd600 100%);
    background-size: 200% auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    background-position: right center;
    box-shadow:
        0 10px 30px rgba(233,30,99,0.5),
        0 0 30px rgba(255,111,0,0.4),
        0 0 60px rgba(255,214,0,0.2);
    transform: translateY(-4px) scale(1.03);
}

.btn-primary:hover::before { left: 100%; }

/* Cards avec hover festif */
.card-hover:hover, .artist-card:hover, .testimonial-card:hover {
    border-color: transparent;
    background:
        linear-gradient(var(--dark-2), var(--dark-2)) padding-box,
        linear-gradient(135deg, #e91e63, #ff6f00, #ffd600, #e91e63) border-box;
    border: 2px solid transparent;
    background-size: 200% 200%;
    animation: festiveGradient 3s ease infinite;
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(233,30,99,0.3),
        0 0 40px rgba(255,111,0,0.15);
}

/* Navbar festif au scroll */
.navbar.scrolled {
    background: linear-gradient(135deg, rgba(13,13,26,0.95), rgba(42,13,46,0.95), rgba(13,13,26,0.95));
    background-size: 200% 200%;
    animation: festiveGradient 10s ease infinite;
    box-shadow: 0 0 30px rgba(233,30,99,0.2);
}

/* Logo qui brille */
.logo-text {
    background: linear-gradient(90deg, #ffd600, #ff6f00, #e91e63, #ff4081, #ffd600);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

.logo-icon {
    animation: neonPulse 2s ease-in-out infinite;
    display: inline-block;
}

/* Badges festifs */
.badge, .section-tag, .popular-tag {
    background: linear-gradient(135deg, rgba(233,30,99,0.2), rgba(255,111,0,0.2), rgba(255,214,0,0.2));
    background-size: 200% 200%;
    animation: festiveGradient 5s ease infinite;
    border: 1px solid rgba(255,214,0,0.3);
}

/* Promo bar avec lumières */
.promo-bar {
    background: linear-gradient(90deg, #e91e63, #ff4081, #ff6f00, #ffd600, #ff6f00, #ff4081, #e91e63);
    background-size: 200% auto;
    animation: shimmer 6s linear infinite;
    box-shadow: 0 2px 20px rgba(233,30,99,0.4);
}

/* WhatsApp flottant avec effet pulse */
.whatsapp-float {
    box-shadow:
        0 6px 24px rgba(37,211,102,0.4),
        0 0 0 0 rgba(37,211,102,0.4);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* Particules de fête en fond */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,214,0,0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(233,30,99,0.03) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255,111,0,0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: festiveGradient 15s ease infinite;
    background-size: 200% 200%;
}

/* Zones cards festives */
.zone-card:hover {
    background: linear-gradient(135deg, rgba(233,30,99,0.15), rgba(255,111,0,0.15));
    border-color: #ffd600;
    color: #ffd600;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 25px rgba(255,214,0,0.3);
}

.zone-primary {
    background: linear-gradient(135deg, #e91e63, #ff6f00, #ffd600);
    background-size: 200% 200%;
    animation: festiveGradient 5s ease infinite;
    box-shadow: 0 5px 20px rgba(233,30,99,0.4);
}

/* Tarifs plus festifs */
.tarifs-table .price {
    background: linear-gradient(90deg, #e91e63, #ff6f00, #ffd600);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    font-size: 1.1rem;
    font-weight: 800;
}

/* Témoignages avec reflets */
.testimonial-stars i {
    animation: neonPulse 2s ease-in-out infinite;
}

.testimonial-avatar {
    background: linear-gradient(135deg, #e91e63, #ff6f00, #ffd600);
    background-size: 200% 200%;
    animation: festiveGradient 3s ease infinite;
    box-shadow: 0 0 15px rgba(233,30,99,0.4);
}

/* Trust badges qui dansent */
.trust-badge {
    background: linear-gradient(135deg, rgba(233,30,99,0.15), rgba(255,214,0,0.15));
    background-size: 200% 200%;
    animation: festiveGradient 4s ease infinite;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 0 10px 25px rgba(233,30,99,0.3);
}

/* Cartes CTA */
.cta-box {
    background:
        linear-gradient(135deg, var(--dark-2), var(--dark-3)),
        linear-gradient(135deg, rgba(233,30,99,0.1), rgba(255,214,0,0.1));
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(233,30,99,0.12), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255,214,0,0.08), transparent 40%);
    animation: discoSpin 20s linear infinite;
    pointer-events: none;
}

/* Section prestations cards */
.prestations .card {
    transition: all 0.4s ease;
}

.prestations .card:hover .card-icon {
    transform: rotate(360deg) scale(1.15);
    animation: neonPulse 1s ease infinite;
    transition: transform 0.8s ease;
}

.card-icon {
    background: linear-gradient(135deg, #e91e63, #ff6f00, #ffd600);
    background-size: 200% 200%;
    animation: festiveGradient 5s ease infinite;
    box-shadow: 0 0 20px rgba(233,30,99,0.3);
}

/* Hero particles plus festives */
.hero-particles {
    background-image:
        radial-gradient(3px 3px at 20px 30px, rgba(255,214,0,0.8), transparent),
        radial-gradient(3px 3px at 40px 70px, rgba(233,30,99,0.6), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,111,0,0.7), transparent),
        radial-gradient(3px 3px at 200px 20px, rgba(255,64,129,0.6), transparent),
        radial-gradient(2px 2px at 300px 90px, rgba(255,214,0,0.5), transparent);
    background-size: 400px 200px;
    animation: particles 15s linear infinite, strobe 8s ease infinite;
}

/* Responsive : désactiver certaines animations sur mobile */
@media (max-width: 768px) {
    .hero-title, .section-title { animation: none; }
    body::before { display: none; }
}

/* ============================================
   MODE FÉERIQUE — Transitions magiques
   ============================================ */

@keyframes fairyFadeIn {
    0% { opacity: 0; transform: scale(0.98); filter: blur(10px) brightness(1.5); }
    100% { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); }
}

@keyframes fairyDustFall {
    0% { transform: translate(var(--tx, 0), 0) rotate(0deg) scale(0); opacity: 0; }
    20% { opacity: 1; transform: translate(var(--tx, 0), -30px) rotate(90deg) scale(1); }
    100% { transform: translate(var(--tx, 0), 200px) rotate(720deg) scale(0.3); opacity: 0; }
}

@keyframes sparkle {
    0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(180deg); opacity: 1; }
}

@keyframes magicBurst {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; box-shadow: 0 0 0 0 rgba(255,214,0,0.8); }
    50% { opacity: 1; box-shadow: 0 0 60px 30px rgba(255,214,0,0.4); }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; box-shadow: 0 0 100px 60px rgba(255,214,0,0); }
}

/* Page en entrée féerique */
body {
    animation: fairyFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Transition au clic sur les liens de navigation */
.nav-links a, .dropdown-menu a, .zone-card, .btn-nav {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet onde au clic (ripple) */
.nav-links a::after, .btn-nav::after, .zone-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,214,0,0.6) 0%, rgba(233,30,99,0.4) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.nav-links a:active::after, .btn-nav:active::after {
    width: 200px;
    height: 200px;
}

/* Container de transition féerique (overlay) */
.fairy-transition {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(233,30,99,0.95), rgba(255,111,0,0.9), rgba(255,214,0,0.85));
    z-index: 99998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fairy-transition.active {
    opacity: 0.3;
    animation: fairyBurstFade 0.8s ease forwards;
}

@keyframes fairyBurstFade {
    0% { opacity: 0; transform: scale(0.5); }
    40% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(2); }
}

/* Sparkles (étincelles) qui apparaissent au clic */
.sparkle {
    position: fixed;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 99999;
    animation: sparkle 1s ease-out forwards;
}

.sparkle::before, .sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, transparent, #ffd600, #fff, #ffd600, transparent);
    border-radius: 2px;
}

.sparkle::before {
    width: 100%;
    height: 2px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px #ffd600, 0 0 16px #ff6f00;
}

.sparkle::after {
    width: 2px;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px #ffd600, 0 0 16px #ff6f00;
}

/* Poussière d'étoiles (petites particules) */
.fairy-dust {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff, #ffd600 40%, #ff6f00 70%, transparent);
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 10px #ffd600, 0 0 20px #ff6f00;
    animation: fairyDustFall 1.8s ease-out forwards;
}

/* Burst magique au centre du clic */
.magic-burst {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, #ffd600 30%, #ff6f00 60%, transparent 100%);
    pointer-events: none;
    z-index: 99999;
    animation: magicBurst 0.9s ease-out forwards;
}

/* Navigation : lien actif avec aura */
.nav-links a.active, .dropdown-menu a.active {
    background: linear-gradient(135deg, rgba(233,30,99,0.2), rgba(255,214,0,0.2)) !important;
    box-shadow: 0 0 20px rgba(255,214,0,0.3), inset 0 0 15px rgba(233,30,99,0.15);
    text-shadow: 0 0 10px rgba(255,214,0,0.5);
}

/* ============================================
   ULTRA FÉERIQUE — Portail Magique & Effets
   ============================================ */

@keyframes portalOpen {
    0% { transform: translate(-50%, -50%) scale(0) rotate(0deg); opacity: 0; filter: blur(0); }
    30% { transform: translate(-50%, -50%) scale(0.5) rotate(180deg); opacity: 1; filter: blur(2px); }
    70% { transform: translate(-50%, -50%) scale(3) rotate(540deg); opacity: 1; filter: blur(0); }
    100% { transform: translate(-50%, -50%) scale(50) rotate(720deg); opacity: 0; filter: blur(20px); }
}

@keyframes waveRadar {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; border-width: 20px; }
    100% { transform: translate(-50%, -50%) scale(8); opacity: 0; border-width: 1px; }
}

@keyframes shootingStar {
    0% { transform: translate(0, 0) rotate(var(--angle, -45deg)); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translate(var(--dx, 400px), var(--dy, 400px)) rotate(var(--angle, -45deg)); opacity: 0; }
}

@keyframes rainbowGlow {
    0% { box-shadow: 0 0 30px #e91e63, 0 0 60px #e91e63; }
    16% { box-shadow: 0 0 30px #ff6f00, 0 0 60px #ff6f00; }
    33% { box-shadow: 0 0 30px #ffd600, 0 0 60px #ffd600; }
    50% { box-shadow: 0 0 30px #4caf50, 0 0 60px #4caf50; }
    66% { box-shadow: 0 0 30px #2196f3, 0 0 60px #2196f3; }
    83% { box-shadow: 0 0 30px #9c27b0, 0 0 60px #9c27b0; }
    100% { box-shadow: 0 0 30px #e91e63, 0 0 60px #e91e63; }
}

@keyframes pageFlyIn {
    0% { opacity: 0; transform: scale(1.1) translateY(30px); filter: blur(8px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes pageFlyOut {
    0% { opacity: 1; transform: scale(1); filter: blur(0); }
    100% { opacity: 0; transform: scale(0.95); filter: blur(10px); }
}

/* Portail magique (anneau qui grandit) */
.magic-portal {
    position: fixed;
    top: 50%; left: 50%;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #e91e63, #ff4081, #ff6f00, #ffd600, #ff6f00, #ff4081, #e91e63);
    pointer-events: none;
    z-index: 99997;
    animation: portalOpen 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 0 60px #ffd600, 0 0 120px #ff6f00, inset 0 0 40px rgba(255,255,255,0.5);
}

.magic-portal::before {
    content: '';
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,214,0,0.6) 40%, transparent 70%);
}

/* Onde radar lumineuse */
.magic-wave {
    position: fixed;
    width: 100px; height: 100px;
    border: 20px solid transparent;
    border-radius: 50%;
    border-image: linear-gradient(135deg, #e91e63, #ffd600, #ff6f00, #e91e63) 1;
    pointer-events: none;
    z-index: 99996;
    animation: waveRadar 1.5s ease-out forwards;
}

/* Étoile filante */
.shooting-star {
    position: fixed;
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #ffd600, #fff);
    box-shadow: 0 0 10px #ffd600, 0 0 20px #ff6f00, 0 0 40px #e91e63;
    pointer-events: none;
    z-index: 99995;
    animation: shootingStar 1.5s ease-out forwards;
    border-radius: 50px;
}

.shooting-star::before {
    content: '✨';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    animation: sparkle 0.6s ease infinite;
}

/* Transition de page : animation d'entrée */
body.page-entering {
    animation: pageFlyIn 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

body.page-leaving {
    animation: pageFlyOut 0.6s cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* Main content avec entrée féerique par section */
.section, .hero-content, .artist-profile {
    animation: pageFlyIn 0.9s cubic-bezier(0.2, 0, 0.2, 1);
}

/* Lien actif avec effet arc-en-ciel */
.nav-links a.active, .btn-nav.active {
    animation: rainbowGlow 4s linear infinite;
    border-radius: 50px;
}

/* Curseur magique (trainée qui suit la souris) */
.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd600, #ff6f00 40%, transparent);
    pointer-events: none;
    z-index: 99994;
    box-shadow: 0 0 12px #ffd600, 0 0 24px #ff6f00;
    mix-blend-mode: screen;
    transition: opacity 0.6s ease;
}

/* Hover ultra : les liens de nav deviennent lumineux */
.nav-links a:hover, .dropdown-menu a:hover, .zone-card:hover, .btn-nav:hover {
    text-shadow: 0 0 8px #ffd600, 0 0 16px #ff6f00;
    transform: translateY(-2px);
}

/* Fireflies (lucioles) qui tournent lentement */
.firefly {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffd600;
    box-shadow: 0 0 8px #ffd600, 0 0 16px #ff6f00;
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
    animation: fireflyFloat 15s ease-in-out infinite;
}

@keyframes fireflyFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(50px, -80px); opacity: 1; }
    50% { transform: translate(-30px, -150px); opacity: 0.8; }
    75% { transform: translate(80px, -100px); opacity: 1; }
}

/* Boutons avec aura mouvante */
.btn-primary:hover, .btn-nav:hover {
    animation: rainbowGlow 3s linear infinite;
}

/* Responsive : garder les effets plus légers */
@media (max-width: 768px) {
    .cursor-trail, .firefly { display: none; }
}

/* ============================================
   EXTRA FESTIF — Ambiance Cabaret VIP
   ============================================ */

@keyframes discoBallRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spotlightSweep {
    0% { transform: translateX(-100vw) skewX(-20deg); }
    100% { transform: translateX(100vw) skewX(-20deg); }
}

@keyframes champagneBubble {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    20% { opacity: 1; transform: scale(1); }
    100% { transform: translateY(-400px) scale(0.3); opacity: 0; }
}

@keyframes fireworkBurst {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    60% { opacity: 1; }
    100% {
        transform: translate(calc(-50% + var(--fx, 0px)), calc(-50% + var(--fy, 0px))) scale(0.4);
        opacity: 0;
    }
}

@keyframes floatingEmoji {
    0% { transform: translateY(100vh) rotate(0deg) scale(0.5); opacity: 0; }
    15% { opacity: 0.8; }
    100% { transform: translateY(-100px) rotate(360deg) scale(1); opacity: 0; }
}

@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 0 0 4px #fff, 0 0 11px #ff4081, 0 0 19px #ff4081, 0 0 40px #e91e63, 0 0 80px #e91e63;
    }
    20%, 24%, 55% { text-shadow: none; }
}

@keyframes glitterBG {
    0% { background-position: 0 0, 50px 50px; }
    100% { background-position: 100px 100px, 150px 150px; }
}

/* Boule disco en haut à droite */
.disco-ball {
    position: fixed;
    top: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, #fff, #ddd 30%, #999 70%),
        repeating-conic-gradient(from 0deg, #fff 0deg 20deg, #ccc 20deg 30deg);
    background-blend-mode: multiply;
    box-shadow:
        0 0 30px rgba(255,214,0,0.6),
        0 0 60px rgba(233,30,99,0.4),
        inset -5px -5px 10px rgba(0,0,0,0.3);
    animation: discoBallRotate 4s linear infinite;
    z-index: 998;
    pointer-events: none;
}

.disco-ball::before {
    content: '';
    position: absolute;
    top: -8px; left: 50%;
    width: 2px; height: 40px;
    background: linear-gradient(to bottom, #ffd600, transparent);
    transform: translateX(-50%);
}

.disco-ball::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 400px; height: 400px;
    background: conic-gradient(from 0deg, transparent 0deg 10deg, rgba(255,214,0,0.1) 15deg 25deg, transparent 30deg 40deg, rgba(233,30,99,0.08) 45deg 55deg, transparent 60deg 70deg, rgba(255,111,0,0.08) 75deg 85deg, transparent 90deg);
    transform: translate(-50%, -50%);
    animation: discoBallRotate 8s linear infinite reverse;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: -1;
}

/* Spotlight qui balaie l'écran */
.spotlight-sweep {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(90deg, transparent 0%, rgba(255,214,0,0.08) 40%, rgba(255,214,0,0.15) 50%, rgba(255,214,0,0.08) 60%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    animation: spotlightSweep 8s linear infinite;
    mix-blend-mode: screen;
}

/* Fond avec paillettes */
body {
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(255,214,0,0.15), transparent 50%),
        radial-gradient(1px 1px at 50% 50%, rgba(233,30,99,0.1), transparent 50%),
        radial-gradient(1px 1px at 80% 70%, rgba(255,111,0,0.12), transparent 50%);
    background-size: 200px 200px, 150px 150px, 250px 250px;
    animation: glitterBG 40s linear infinite;
}

/* Hero title néon clignotant */
.hero-title {
    animation: neonFlicker 5s infinite;
}

/* Emojis festifs qui flottent */
.floating-emoji {
    position: fixed;
    font-size: 24px;
    pointer-events: none;
    z-index: 3;
    animation: floatingEmoji 12s linear forwards;
    filter: drop-shadow(0 0 8px rgba(255,214,0,0.5));
}

/* Feu d'artifice au centre */
.firework {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99993;
    animation: fireworkBurst 1.2s ease-out forwards;
}

/* Bulles de champagne */
.champagne-bubble {
    position: fixed;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,214,0,0.6) 50%, rgba(255,111,0,0.3) 100%);
    box-shadow: 0 0 6px rgba(255,214,0,0.5), inset 0 0 4px rgba(255,255,255,0.8);
    pointer-events: none;
    z-index: 2;
    animation: champagneBubble 5s ease-out forwards;
}

/* Promo bar ultra festive */
.promo-bar {
    animation: shimmer 3s linear infinite, neonFlicker 8s infinite;
}

/* Ruban VIP en diagonale */
.vip-ribbon {
    position: fixed;
    top: 30px;
    left: -50px;
    width: 200px;
    background: linear-gradient(135deg, #e91e63, #ff6f00, #ffd600);
    background-size: 200% 200%;
    animation: festiveGradient 3s ease infinite;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transform: rotate(-45deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 997;
    pointer-events: none;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Hero avec bande lumineuse au bas */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #ff4081, #ff6f00, #ffd600, #ff6f00, #ff4081, #e91e63);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    box-shadow: 0 0 20px rgba(233,30,99,0.6);
    z-index: 10;
}

/* Compteur animé trust badges */
.trust-item strong {
    animation: neonPulse 2s ease-in-out infinite;
}

/* Masquer la boule disco sur mobile */
@media (max-width: 768px) {
    .disco-ball, .vip-ribbon, .spotlight-sweep { display: none; }
}
