.lp-nav-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.lp-nav-dropdown > span {
  padding: 0 10px;
}

.lp-nav-dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 10px 0;
  border-radius: 6px;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  min-width: 220px;
  z-index: 999;
}

.lp-nav-dropdown:hover .lp-nav-dropdown-menu {
  display: block;
}

.lp-nav-dropdown-menu {
  display: none;
  position: absolute;
  background: #050816; /* même fond que le site */
  padding: 10px 0;
  border-radius: 10px;
  top: 100%;
  left: 0;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  min-width: 220px;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 999;
}

.lp-mobile-subtitle {
  margin-top: 15px;
  padding: 5px 0;
  font-weight: bold;
  opacity: 0.7;
}

/* ==========================================================
   MENU PREMIUM – LA PIXELLERIE
   À ajouter dans style.css (ou <style>) sur TOUTES les pages
   ========================================================== */

/* Variables (si pas déjà présentes) */
:root {
  --bg-main: #050816;
  --bg-alt: #070b1f;
  --accent: #ff4d83;
  --accent-soft: #ff6cb0;
  --text-main: #ffffff;
  --text-muted: #a8b0c5;
}

/* HEADER GLOBAL */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5, 8, 22, 0.95), rgba(5, 8, 22, 0.75));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* NAVBAR */
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Roboto", sans-serif;
}

/* LOGO + baseline */
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 40px;
  display: block;
}

.nav-title {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* MENU PRINCIPAL */
.nav-middle {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--text-muted);
  align-items: center;
}

/* LIENS */
.nav-link {
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
  color: var(--text-muted);
}

.nav-link:hover {
  color: var(--text-main);
}

/* Soulignement animé */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* PAGE ACTIVE */
.nav-link.active {
  color: var(--text-main);
}

.nav-link.active::after {
  width: 100%;
}

/* ======== SOUS-MENU CÔTE D’AZUR ======== */
.nav-item {
  position: relative;
}

.nav-link-submenu {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* Conteneur sous-menu */
.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 190px;
  background: #050816;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  z-index: 100;
  padding: 6px 0;
}

/* Affichage au survol */
.nav-item:hover .nav-submenu {
  display: block;
}

.nav-submenu a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-submenu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

/* ZONE DROITE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-pastille {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  white-space: nowrap;
}

.badge-pastille strong {
  color: var(--text-main);
}

.phone-link {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  color: #fff;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.phone-link:hover {
  opacity: 0.9;
}

.nav-lang {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
}

.nav-lang:hover {
  color: var(--text-main);
}

    /* ====== LIGHTBOX VIDÉO ====== */
    .lp-lightbox {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.8);
      z-index: 999;
    }

    .lp-lightbox.is-open {
      display: flex;
    }

    .lp-lightbox-inner {
      position: relative;
      max-width: 1280px;
      width: 90%;
      aspect-ratio: 16 / 9;
      background: #000;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .lp-lightbox-inner video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .lp-lightbox-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: none;
      background: rgba(0,0,0,0.7);
      color: #fff;
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-middle {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  background: #050816;
  color: #e5e7eb;
}

a {
  text-decoration: none;
  color: inherit;
}

main {
  min-height: 60vh;
}

.lp-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* HEADER */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #050816dd;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #111827;
}

.lp-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-header-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.lp-nav a {
  font-size: 0.9rem;
  color: #cbd5f5;
  opacity: 0.85;
}

.lp-nav a:hover {
  opacity: 1;
}

.lp-nav-lang {
  padding: 0.18rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #4b5563;
  font-size: 0.8rem;
}

.lp-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #fff;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

/* BURGER MENU */
.lp-burger {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.lp-burger span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 6px;
  background: #e5e7eb;
  transition: 0.3s;
}

.lp-mobile-menu {
  display: none;
  background: #020617;
  border-bottom: 1px solid #111827;
  padding: 0.8rem 1.5rem 1.3rem;
}

.lp-mobile-menu a {
  display: block;
  font-size: 0.95rem;
  color: #cbd5f5;
  opacity: 0.9;
  margin-bottom: 0.7rem;
}

.lp-mobile-menu a:hover {
  opacity: 1;
}

/* HERO */
.lp-hero {
  padding: 2.5rem 0 2rem;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.3rem;
  align-items: center;
}

.lp-hero-kicker,
.lp-section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.lp-hero-title {
  font-size: 2.1rem;
  margin: 0 0 0.6rem;
  color: #fff;
}

.lp-hero-sub {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.7;
}

.lp-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.lp-pill {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.25rem 0.8rem;
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* BUTTONS */
.lp-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.lp-btn-primary,
.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #fff;
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.35);
}

.lp-btn-secondary {
  background: transparent;
  border-color: #4b5563;
  color: #e5e7eb;
}

/* CARD */
.lp-card {
  border-radius: 1.1rem;
  padding: 1.2rem;
  background: radial-gradient(circle at top, #0b1120, #020617 70%);
  border: 1px solid rgba(51, 65, 85, 0.95);
  font-size: 0.9rem;
}

.lp-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #fff;
}

.lp-card p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.6;
}

.lp-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: #9ca3af;
}

.lp-card li {
  margin-bottom: 0.25rem;
}

/* SECTION */
.lp-section {
  padding: 2.4rem 0;
  border-top: 1px solid #111827;
}

.lp-section-title {
  margin: 0;
  font-size: 1.6rem;
  color: #fff;
}

.lp-section-desc {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.75;
  max-width: 52rem;
}

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.3rem;
}

/* --------------------------- */
/*     SHOWREEL — VERSION OK   */
/* --------------------------- */
.lp-showreel {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.lp-showreel-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.lp-showreel-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  display: block;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: auto;
}

/* CLIENTS */
.lp-clients {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.lp-clients-image-wrapper {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.lp-clients-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  background: #fff;
}

/* VIDEO MODAL */
.lp-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 100;
}

.lp-video-modal.open {
  display: flex;
}

.lp-video-modal-inner video {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* CTA */
.lp-cta-global {
  background: linear-gradient(135deg, #0f172a 0%, #020617 70%);
  border-top: 1px solid #1f2937;
  padding: 2.6rem 1.5rem 2.1rem;
}

.lp-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.lp-cta-inner h2 {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
  color: #fff;
}

.lp-cta-inner p {
  margin: 0 auto 1.4rem;
  max-width: 48rem;
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.7;
}

.lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* FORMULAIRE */
.lp-contact-form-section {
  padding-top: 1rem;
  padding-bottom: 2.4rem;
}

.lp-form {
  margin-top: 1.3rem;
}

.lp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lp-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.lp-form-field label {
  font-size: 0.85rem;
  color: #9ca3af;
}

.lp-form-field input,
.lp-form-field textarea {
  background: #020617;
  border: 1px solid #1f2937;
  border-radius: 0.6rem;
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.lp-form-field textarea:focus,
.lp-form-field input:focus {
  outline: none;
  border-color: #ec4899;
}

/* FOOTER */
.lp-footer-main {
  background: #020617;
  border-top: 1px solid #111827;
  padding: 2.4rem 1.5rem 1.8rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.lp-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 1.6rem;
}

.lp-footer-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #f9fafb;
}

.lp-footer-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  margin: 0 0 0.6rem;
}

.lp-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-footer-list li {
  margin-bottom: 0.3rem;
}

.lp-footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #111827;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .lp-grid-3 {
    grid-template-columns: 1fr;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 880px) {
  .lp-nav {
    display: none;
  }
  .lp-burger {
    display: flex;
  }
}

@media (max-width: 720px) {
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .lp-form-grid {
    grid-template-columns: 1fr;
  }
}

/* FORMULAIRE — STYLE PRO / RESPONSIVE */
.form-container {
  width: 100%;
  max-width: 650px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container label {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 6px;
  display: block;
  color: #ffffff;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0d0d0d;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 15px;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.form-container textarea {
  min-height: 140px;
  resize: vertical;
}

.form-container button {
  background: linear-gradient(90deg, #ff4d83, #ff6cb0);
  padding: 14px 26px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  width: fit-content;
}

.form-container button:hover {
  opacity: 0.85;
}

/* ===== FOOTER PREMIUM LA PIXELLERIE ===== */

.footer-premium {
  background: #020617;
  border-top: 1px solid #111827;
  padding: 2.4rem 1.5rem 1.8rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 1.3fr;
  gap: 1.6rem;
}

.footer-col h4 {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
}

.footer-logo {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-desc {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.3rem;
}

.footer-col ul li a {
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #111827;
  font-size: 0.78rem;
  color: #6b7280;
  text-align: center;
}

/* responsive footer */
@media (max-width: 960px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
  }
}
