/* ============================================================
   DREAM MUSIC EVENT — NEW DESIGN SYSTEM
   Palette: Black/Charcoal + Gold + White
   ============================================================ */

:root {
    --accent:       #AF145E;
    --accent-light: #d4297d;
    --accent-dark:  #8a0e49;
    --btn-bg:       #22062C;
    --black:     #0d0012;
    --dark:      #130018;
    --dark-2:    #1c0026;
    --dark-3:    #280035;
    --gray:      #8a7a92;
    --gray-light:#c4b8cc;
    --white:     #ffffff;
    --off-white: #f5f0f8;
    --font-sans:  'Inter', 'DM Sans', system-ui, -apple-system, sans-serif;
    --radius:    8px;
    --radius-lg: 16px;
    --shadow:    0 4px 24px rgba(0,0,0,.45);
    --shadow-lg: 0 16px 64px rgba(0,0,0,.6);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ===== NEON AMBIENT BACKGROUND ===== */
/*
 * mix-blend-mode: screen = la lumière s'additionne sur les fonds sombres
 * mais ne touche pas le texte blanc (screen sur blanc = blanc, toujours lisible).
 * Les blobs sont au-dessus de tout (z-index élevé) mais invisibles sur le contenu clair.
 */
.neon-ambient {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    overflow: hidden;
}

.neon-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: .10;
    mix-blend-mode: screen;
    will-change: transform;
    animation: neonDrift 20s ease-in-out infinite alternate;
}

.neon-purple {
    width: 700px;
    height: 700px;
    background: #6b0fa8;
    top: -15%;
    left: -12%;
    animation-duration: 24s;
}

.neon-blue {
    width: 600px;
    height: 600px;
    background: #AF145E;
    top: 35%;
    right: -10%;
    animation-duration: 28s;
    animation-delay: -9s;
}

.neon-cyan {
    width: 500px;
    height: 500px;
    background: #7b0d6e;
    bottom: 5%;
    left: 15%;
    animation-duration: 22s;
    animation-delay: -15s;
}

.neon-violet {
    width: 450px;
    height: 450px;
    background: #d4297d;
    top: 60%;
    right: 20%;
    animation-duration: 32s;
    animation-delay: -5s;
}

@keyframes neonDrift {
    0%   { transform: translate(0,    0)   scale(1);    }
    33%  { transform: translate(50px, -40px) scale(1.1); }
    66%  { transform: translate(-30px, 60px) scale(0.93); }
    100% { transform: translate(40px,  25px) scale(1.06); }
}

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

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.container-text   { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center  { text-align: center; }
.mt-40        { margin-top: 40px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-sans); line-height: 1.2; font-weight: 700; }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--white);
}
.section-title.centered { text-align: center; }

.section-sub {
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 48px;
}
.section-sub.centered { text-align: center; }

.gold { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: var(--btn-bg);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary:hover {
    background: var(--accent);
    box-shadow: 0 0 28px rgba(175,20,94,.45);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: transparent;
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 0;
    border: 2px solid rgba(255,255,255,.4);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
    transform: translateY(-2px);
}

.btn-large { padding: 15px 40px; font-size: .75rem; }
.btn-full  { width: 100%; text-align: center; color: var(--white) !important; }

/* ===== NAVIGATION ===== */
.dme-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.dme-nav.scrolled {
    background: rgba(10,10,10,.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

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

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; }
/* Nav transparent : logo dark caché, logo white visible */
.nav-logo .logo-dark  { display: none; }
.nav-logo .logo-white { display: block; }
/* Nav scrollée (fond sombre) : les deux côte à côte */
.dme-nav.scrolled .nav-logo .logo-dark  { display: block; }
.dme-nav.scrolled .nav-logo .logo-white { display: block; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.85);
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .02em;
    padding: 10px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent);
    background: rgba(74,144,226,.08);
}
.nav-link i { font-size: .7rem; transition: transform var(--transition); }
.has-dropdown:hover .nav-link i { transform: rotate(180deg); }

.nav-cta {
    background: var(--btn-bg);
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 8px;
    border: none;
    border-radius: 0;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; box-shadow: 0 0 18px rgba(175,20,94,.4); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    box-shadow: var(--shadow);
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: .875rem;
    color: var(--gray-light);
    transition: color var(--transition), background var(--transition);
    border-radius: 6px;
    margin: 4px;
}
.dropdown li a:hover { color: var(--accent); background: rgba(74,144,226,.08); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.4) 60%, rgba(10,10,10,.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: min(480px, 80vw);
    width: 100%;
    margin: 0 auto 28px;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,.5));
}

.hero-tagline {
    display: inline-block;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 8px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-title .accent-outline {
    -webkit-text-stroke: 2px var(--accent);
    color: transparent;
}

.hero-sub {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 12px;
    line-height: 1.6;
}
.hero-sub strong { font-weight: 700; }

.hero-tags {
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    margin: 0 auto;
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== INTRO ===== */
.section-intro {
    padding: 100px 0;
    background: var(--dark);
}
.intro-content {
    font-size: 1.15rem;
    color: var(--gray-light);
    line-height: 1.8;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.section-services {
    padding: 100px 0;
    background: var(--black);
}
.services-label {
    text-align: center;
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 48px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    cursor: pointer;
    transition: flex var(--transition);
}
.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.service-card:hover .service-card-bg { transform: scale(1.05); }

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.95) 0%, rgba(10,10,10,.5) 60%, rgba(10,10,10,.2) 100%);
    transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(10,10,10,.98) 0%, rgba(10,10,10,.65) 60%, rgba(10,10,10,.3) 100%);
}

.service-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 32px;
    justify-content: flex-end;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--white);
}
.service-card p {
    color: var(--gray-light);
    font-size: .9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--transition), transform var(--transition);
}
.service-card:hover .service-list {
    opacity: 1;
    transform: translateY(0);
}
.service-list a {
    color: var(--accent);
    font-size: .85rem;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid rgba(74,144,226,.2);
    transition: padding-left var(--transition);
}
.service-list a:hover { padding-left: 8px; }

.service-card.featured .service-card-icon { background: rgba(74,144,226,.15); }

/* ===== VIDEO ===== */
.section-video { position: relative; overflow: hidden; }
.video-wrapper { position: relative; }
.video-wrapper video {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.55);
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-overlay h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 32px;
    text-align: center;
}

/* ===== THEMES ===== */
.section-themes {
    padding: 100px 0;
    background: var(--dark);
}
.themes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.theme-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.theme-card:hover {
    border-color: var(--accent);
    background: rgba(74,144,226,.06);
    transform: translateY(-4px);
}
.theme-icon { font-size: 2.5rem; margin-bottom: 12px; }
.theme-card h4 { font-family: var(--font-sans); font-size: .9rem; font-weight: 600; color: var(--gray-light); }
.theme-card:hover h4 { color: var(--accent); }

/* ===== GALLERY ===== */
.section-gallery {
    padding: 100px 0;
    background: var(--black);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: -16px; right: -16px;
    width: 36px; height: 36px;
    background: var(--accent);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ===== PLAYLISTS ===== */
.section-playlists {
    padding: 100px 0;
    background: var(--dark);
}
.playlists-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.playlist-card {
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
}
.playlist-link {
    padding: 12px 20px;
    text-align: right;
}
.playlist-link a {
    color: var(--gray);
    font-size: .8rem;
    transition: color var(--transition);
}
.playlist-link a:hover { color: var(--accent); }

/* ===== CTA SECTION ===== */
.section-cta {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.75);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}
.cta-content p { color: var(--gray-light); font-size: 1.1rem; margin-bottom: 36px; }

/* ===== REVIEWS ===== */
.section-reviews {
    padding: 100px 0;
    background: var(--off-white);
    color: var(--black);
}
.section-reviews .section-title {
    color: var(--black);
}

/* ===== EVENT HERO ===== */
.event-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.62);
}
.event-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px 60px;
    text-align: center;
}
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: .8rem;
    margin-bottom: 24px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav span:last-child { color: var(--accent); }
.event-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 16px;
}
.event-hero-content p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ===== EVENT DESCRIPTION ===== */
.section-event-desc {
    padding: 100px 0;
    background: var(--dark);
}
.event-desc-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}
.event-desc-body h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 24px;
}
.event-desc-body p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}
.event-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.event-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
    font-size: .95rem;
}
.event-features li i { color: var(--accent); font-size: .8rem; flex-shrink: 0; }

/* CTA Card */
.cta-card {
    background: var(--dark-2);
    border: 1px solid rgba(175,20,94,.2);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: sticky;
    top: 100px;
    text-align: center;
}
.cta-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.cta-card > p { color: var(--gray); font-size: .9rem; margin-bottom: 24px; }
.cta-card .btn-primary {
    background: var(--accent) !important;
    color: var(--white) !important;
}
.cta-card-divider {
    color: var(--gray);
    font-size: .8rem;
    margin: 16px 0;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.cta-note { color: var(--gray); font-size: .8rem; margin-top: 16px; }

/* ===== OPTIONS ===== */
.section-options {
    padding: 100px 0;
    background: var(--black);
}
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.option-group {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.option-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(74,144,226,.06);
}
.option-group-header i { color: var(--accent); font-size: 1.1rem; }
.option-group-header h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; }
.option-list { padding: 12px; }
.option-list li {
    padding: 12px;
    border-radius: var(--radius);
    transition: background var(--transition);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: start;
}
.option-list li:hover { background: rgba(255,255,255,.04); }
.option-name { font-size: .9rem; font-weight: 500; }
.option-price {
    color: var(--accent);
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
}
.option-desc {
    grid-column: 1 / -1;
    color: var(--gray);
    font-size: .8rem;
    line-height: 1.5;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    text-align: center;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74,144,226,.12) 0%, transparent 70%);
    pointer-events: none;
}
.contact-hero-overlay { display: none; }
.contact-hero-content { position: relative; z-index: 2; }
.contact-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.contact-hero p { color: var(--gray-light); font-size: 1.1rem; }

.section-contact { padding: 80px 0 120px; background: var(--dark); }

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

.info-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 24px;
}
.info-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.info-card > p { color: var(--gray); font-size: .9rem; margin-bottom: 28px; }
.info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.info-list li {
    display: flex;
    gap: 14px;
    color: var(--gray-light);
    font-size: .9rem;
    line-height: 1.6;
}
.info-list i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.info-list a:hover { color: var(--accent); }
.info-social { display: flex; gap: 12px; }
.info-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.info-social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(74,144,226,.08); }

.info-promise {
    background: rgba(74,144,226,.08);
    border: 1px solid rgba(74,144,226,.2);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.info-promise ul { display: flex; flex-direction: column; gap: 12px; }
.info-promise li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--gray-light); }
.info-promise i { color: var(--accent); }

/* ===== FORM ===== */
.dme-form { display: flex; flex-direction: column; gap: 0; }

.form-section {
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 36px 0;
}
.form-section:first-child { padding-top: 0; }

.form-section-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-section-title span {
    width: 28px; height: 28px;
    background: var(--accent);
    color: var(--black);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row:last-child { margin-bottom: 0; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-light);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.dme-input, .dme-select, .dme-textarea {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: .95rem;
    padding: 14px 16px;
    width: 100%;
    transition: border-color var(--transition), background var(--transition);
    appearance: none;
}
.dme-input:focus, .dme-select:focus, .dme-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(74,144,226,.04);
}
.dme-input::placeholder, .dme-textarea::placeholder { color: var(--gray); }
.dme-select { cursor: pointer; }
option { background: var(--dark-2); color: var(--white); }
.dme-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* ===== OPTION TOGGLE CARDS ===== */
.form-group-checks { margin-bottom: 32px; }

.checks-label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.checks-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.06);
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
}

/* Input natif caché — contrôle visuel uniquement */
.check-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.check-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,.07);
    padding: 16px 14px 14px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
    user-select: none;
    overflow: hidden;
}
.check-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(175,20,94,.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}
.check-item:hover {
    border-color: rgba(175,20,94,.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.check-item:hover::before { opacity: 1; }

.check-item.checked {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 8px 24px rgba(175,20,94,.2);
}
.check-item.checked::before { opacity: 1; }

/* Indicateur de sélection — coin haut droite */
.check-item .check-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 22px;
    height: 22px;
    background: rgba(20, 0, 28, 0.75);
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .55rem;
    color: transparent;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}
.check-item.checked .check-indicator {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Vignette photo produit */
.check-item .check-thumb {
    position: relative;
    width: calc(100% + 28px);
    margin: -16px -14px 10px -14px;
    height: 100px;
    overflow: hidden;
    cursor: zoom-in;
}
.check-item .check-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.check-item:hover .check-thumb img { transform: scale(1.05); }
.check-item .check-thumb-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.check-item:hover .check-thumb-zoom { opacity: 1; }

/* Nom du produit */
.check-item .check-name {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-light);
    line-height: 1.3;
    transition: color var(--transition);
    padding-right: 20px;
}
.check-item:hover .check-name,
.check-item.checked .check-name { color: var(--white); }

/* Prix */
.check-item .check-price {
    font-size: .75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .04em;
}

.form-empty-note { color: var(--gray); font-size: .9rem; font-style: italic; }

.form-submit { padding-top: 36px; }

/* Success message */
.form-success {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(75,181,67,.1);
    border: 1px solid rgba(75,181,67,.3);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.form-success i { color: #4bb543; font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.form-success strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.form-success p { color: var(--gray-light); font-size: .9rem; }

.form-mail-error {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(212, 41, 125, .45);
    background: rgba(175, 20, 94, .12);
}
.form-mail-error > i { margin-top: 4px; color: var(--accent-light); }
.form-mail-error strong { color: var(--white); }
.form-mail-error p { margin-top: 3px; color: var(--gray-light); font-size: .86rem; }

/* Symfony form error styles */
.form-error { color: #e05; font-size: .8rem; margin-top: 4px; }
ul.form-error { margin-top: 4px; }
ul.form-error li { color: #e05; font-size: .8rem; }

/* ===== FOOTER ===== */
.dme-footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 80px 0 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: .9rem; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-nav h4, .footer-contact h4 {
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--gray); font-size: .9rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-contact p {
    color: var(--gray);
    font-size: .875rem;
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 24px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-bottom p { color: var(--gray); font-size: .8rem; }

/* ===== STICKY BOOKING ===== */
.sticky-booking {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--btn-bg);
    color: var(--white);
    border: none;
    padding: 13px 22px;
    border-radius: 0;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(175,20,94,.3);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.sticky-booking:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(175,20,94,.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-container { grid-template-columns: 1fr 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 320px; }
    .service-list { opacity: 1; transform: none; }

    .event-desc-grid { grid-template-columns: 1fr; }
    .cta-card { position: static; }

    .contact-layout { grid-template-columns: 1fr; }
    .contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .contact-info .info-card { margin-bottom: 0; }

    .themes-grid { grid-template-columns: repeat(3, 1fr); }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 0 40px;
        transition: right var(--transition);
        overflow-y: auto;
        border-left: 1px solid rgba(255,255,255,.08);
        z-index: 999;
    }
    .nav-menu.open { right: 0; }
    .nav-link { padding: 14px 24px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.04); }
    .nav-cta { margin: 16px; border-radius: var(--radius); }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,.2);
        border: none;
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
    }
    .has-dropdown.open .dropdown { max-height: 300px; }
    .dropdown li a { padding: 10px 24px 10px 36px; margin: 0; border-radius: 0; }

    .nav-toggle { display: flex; z-index: 1000; }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .playlists-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .form-row { grid-template-columns: 1fr; }
    .themes-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .themes-grid { grid-template-columns: 1fr 1fr; }
    .sticky-booking span { display: none; }
    .sticky-booking { padding: 16px; border-radius: 50%; }
}
