/*==================================================
  Peps Drone - Styles principaux
  Ce fichier est chargé par le thème enfant pepsdrone-child.
==================================================*/

/* ==================================================
   0. FONTES ELZA + VARIABLES GLOBALES
   ================================================== */

@font-face {
  font-family: "Elza";
  src: url("/wordpress/wp-content/themes/pepsdrone-child/fonts/Elza/elza-text-light.woff2")
    format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Elza";
  src: url("/wordpress/wp-content/themes/pepsdrone-child/fonts/Elza/elza-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Elza";
  src: url("/wordpress/wp-content/themes/pepsdrone-child/fonts/Elza/elza-text-oblique.woff2")
    format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Elza";
  src: url("/wordpress/wp-content/themes/pepsdrone-child/fonts/Elza/elza-bold.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Elza";
  src: url("/wordpress/wp-content/themes/pepsdrone-child/fonts/Elza/elza-black.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette Peps Drone */
  --foret: #50723c;
  --prairie: #aac542;
  --nuit: #1c448e;
  --ciel-ete: #add6e5;
  --rose-fete: #ff99cc;
  --orange-fun: #df7b2e;

  --bg-page: #ffffff;
  --texte-principal: #111111;
  --texte-secondaire: #444444;

  --rayon-carte: 0px;
  --ombre-carte: 0 25px 40px rgba(0, 0, 0, 0.1);
  --picto-opacity: 0.2;
}

/* ==================================================
   1. RESET & BASE
   ================================================== */

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

body {
  font-family: "Elza", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
    sans-serif;
  background-color: var(--bg-page);
  color: var(--texte-principal);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

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

/* ==================================================
   2. LAYOUT GLOBAL (MAIN, SECTIONS, GRILLES)
   ================================================== */

main {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 32px 12px 80px;
}

section {
  padding: 56px 0;
  position: relative;
}

h1,
h2,
h3 {
  font-weight: 450;
  letter-spacing: 0;
}

p {
  font-size: 1rem;
  color: var(--texte-secondaire);
  margin-bottom: 0.75rem;
}

/* Grilles utilitaires */

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: flex-start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.section-header {
  margin-bottom: 2.5rem;
}

/* ==================================================
   3. BOUTONS
   ================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 0;
  border: none;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--nuit);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--ciel-ete);
  color: #111111;
  box-shadow: 0 10px 24px rgba(28, 68, 142, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--nuit);
  border: 1px solid var(--nuit);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--ciel-ete);
  color: #111111;
}

/* Icône des boutons : picto blanc par défaut */
.btn-icon-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-blanc@4x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
  transform: translateY(0px);
  opacity: 0.95;
  transition: all 0.25s ease;
}

/* Au survol → le logo devient noir */
.btn:hover .btn-icon-arrow,
.btn:focus .btn-icon-arrow {
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-noir@4x.png");
  opacity: 1;
  transform: translateY(0px) scale(1.05);
}

/* Bouton spécial popup plaquette */
.btn-primary-plaquette {
  white-space: normal;
  flex-wrap: wrap;
  row-gap: 2px;
  column-gap: 8px;
  text-align: center;
}

.btn-primary-plaquette .btn-icon-middle {
  margin: 0;
}

/* état disabled (si utilisé) */
.btn-download-pdf[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==================================================
   4. PICTOGRAMMES DE FOND (SECTIONS)
   ================================================== */

.with-picto {
  position: relative;
  z-index: 0;
}

.with-picto::after {
  content: "";
  position: absolute;
  top: var(--picto-top, auto);
  right: var(--picto-right, auto);
  bottom: var(--picto-bottom, -40px);
  left: var(--picto-left, auto);
  width: var(--picto-size, 240px);
  height: var(--picto-size, 240px);
  background-image: var(--picto-url);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: var(--picto-opacity, 0.05);
  pointer-events: none;
  z-index: -2;
}

/* ==================================================
   5. HEADER (LOGO NOIR + MENU)
   ================================================== */

.pd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #d1d5db;
  font-family: "Elza", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.pd-header-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 5px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Logo */
.pd-header-logo img {
  height: 75px;
  width: auto;
  display: block;
}

/* Menu desktop */
.pd-header-nav {
  display: flex;
  gap: 45px;
  align-items: center;
}

.pd-header-link {
  text-decoration: none;
  font-size: 17px;
  color: #111827;
  font-weight: 550;
  position: relative;
  padding-left: 28px;
}

/* Soulignement au survol */
.pd-header-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background-color: #275aa8;
  transition: width 0.25s ease-in-out;
}

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

/* Picto aléatoire au survol (menu desktop) */
.pd-header-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: var(--pd-picto);
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.pd-header-link.is-hovered::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* Burger mobile */
.pd-header-burger {
  display: none;
  width: 34px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.pd-header-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #111827;
  border-radius: 999px;
}

/* Menu mobile */
.pd-header-nav-mobile {
  display: none;
  flex-direction: column;
  padding: 20px 32px;
  gap: 16px;
  border-top: 1px solid #d1d5db;
  background-color: #ffffff;
  box-sizing: border-box;
}

.pd-header-nav-mobile a {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
}

.pd-header-nav-mobile.is-hidden {
  display: none;
}

/* ==================================================
   6. HERO ACCUEIL (HOME)
   ================================================== */

#hero-accueil {
  padding-top: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#hero-accueil .hero-top {
  margin-bottom: 32px;
}

#hero-accueil h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

#hero-accueil .hero-intro {
  font-size: 1.05rem;
  max-width: 740px;
}

#hero-accueil .hero-cta-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

#hero-accueil .hero-image-wrapper {
  margin-top: 10px;
  border-radius: var(--rayon-carte);
  overflow: hidden;
  box-shadow: var(--ombre-carte);
}

#hero-accueil .hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==================================================
   7. SECTION SERVICES (HOME) + SOUVENIRS UNIQUES
   ================================================== */

#services {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#services .service-card {
  border-radius: var(--rayon-carte);
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: var(--ombre-carte);
  display: flex;
  flex-direction: column;
  height: 100%;
}

#services .service-image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

#services .service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Images de la section "Ce qui rend vos souvenirs uniques" */
#souvenirs-uniques .service-image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

#souvenirs-uniques .service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#services .service-content {
  padding: 18px 20px 22px;
}

/* Titre carte service */
.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

/* Variante avec picto automatique après le titre (si utilisée) */
.service-title.icon-picto {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.service-title.icon-picto::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-noir@4x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.85;
  flex-shrink: 0;
}

/* Lien qui rend toute la carte service cliquable */
.service-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* Soulignement bleu façon header sur titres services */
.service-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #275aa8;
  transition: width 0.25s ease-in-out;
}

.service-card-link:hover .service-title::before {
  width: 100%;
}

/* Garder les grilles au-dessus des pictos de fond */
#services .grid-3 {
  position: relative;
  z-index: 1;
}

/* Souvenirs uniques : pas de soulignement sur les titres de cartes */
#souvenirs-uniques .service-title::before {
  content: none;
}

/* ==================================================
   8. SECTION AVIS CLIENTS (HOME + MARIAGE + ÉVÈNEMENTS)
   ================================================== */

#avis {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background-color: var(--bg-page) !important;
}

/* Grille type masonry */
.avis-grid {
  column-count: 3;
  column-gap: 32px;
}

@media (max-width: 1024px) {
  .avis-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .avis-grid {
    column-count: 1;
  }
}

/* Carte d'avis */
.avis-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 32px;
  background-color: #ffffff;
  border-radius: 0;
  padding: 24px;
  box-shadow: var(--ombre-carte);
  box-sizing: border-box;
  break-inside: avoid;
}

/* Image en haut de carte */
.avis-card-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 12px;
}

.avis-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenu texte */
.avis-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.avis-stars {
  color: var(--nuit);
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.avis-title {
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.avis-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Footer (nom + type) */
.avis-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  background: transparent;
  border-radius: 0;
  display: block;
}

.avis-nom {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.avis-type {
  font-size: 13px;
  color: #6b7280;
}

/* Recadrages spécifiques */
.avis-gautier {
  object-position: 50% 28%;
}

.avis-claire {
  object-position: 50% 20%;
}

.avis-lea {
  object-position: 50% 75%;
}

.avis-melo {
  object-position: 50% 40%;
}

/* Boutons sous les avis */
.avis-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Cartes d'avis home : fond blanc + ombre marquée */
body.home #avis .avis-card {
  background-color: #ffffff !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08) !important;
}

/* ==================================================
   9. SECTION CONTACT (placeholder)
   ================================================== */

#contact {
  /* prêt pour une stylisation ultérieure */
}

/* ==================================================
   10. FOOTER GLOBAL
   ================================================== */

.pd-footer-wrapper {
  background-color: #e6f0f4;
  font-family: "Elza", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #111827;
  padding: 40px 24px 30px;
}

.pd-footer-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.pd-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

/* Colonne gauche */
.pd-footer-left {
  flex: 1 1 320px;
  padding: 24px;
  background-color: #dfeaf1;
}

.pd-footer-logo img {
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.pd-footer-left h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pd-footer-left p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 18px;
}

/* Bouton footer */
.pd-footer-btn {
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.pd-footer-btn-main {
  background-color: #275aa8;
  padding: 10px 22px;
}

.pd-footer-btn-arrow {
  background-color: #1f4480;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-footer-btn-arrow span {
  font-size: 16px;
  line-height: 1;
}

.pd-footer-btn:hover .pd-footer-btn-main,
.pd-footer-btn:hover .pd-footer-btn-arrow {
  filter: brightness(1.05);
}

.pd-footer-divider {
  border-top: 3px solid #275aa8;
  margin: 18px 0;
  width: 90%;
}

.pd-footer-badges {
  margin-top: 10px;
}

.pd-footer-badges img {
  display: block;
}

/* Colonne droite */
.pd-footer-right {
  flex: 1 1 520px;
  padding: 24px;
  background-color: #e6f0f4;
}

.pd-footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.pd-footer-column {
  flex: 1 1 140px;
}

.pd-footer-title {
  font-weight: 600;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 4px;
  font-size: 14px;
}

.pd-footer-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.pd-footer-list li {
  margin-bottom: 6px;
}

.pd-footer-list a {
  color: #111827;
  text-decoration: none;
  font-size: 14px;
}

.pd-footer-list a:hover {
  text-decoration: underline;
}

/* Bas de footer */
.pd-footer-bottom {
  margin-top: 24px;
  background-color: #dfeaf1;
  padding: 20px 24px;
  text-align: center;
}

.pd-footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.pd-social-card {
  min-width: 70px;
  padding: 10px 14px;
  background-color: #f4f7f9;
  border: 1px solid #c9d4dc;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pd-social-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.pd-footer-copy {
  font-size: 12px;
  line-height: 1.4;
  color: #4b5563;
}

.pd-footer-copy a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}

.pd-footer-copy a:hover {
  text-decoration: underline;
}

/* ===================== FOOTER : PARTENAIRES ===================== */

.footer-partners {
  margin-top: 2rem;
}

.footer-partners .footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.partners-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partners-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
  margin: 6px 0;
}

.partner-name a,
.partner-contact a {
  text-decoration: none;
  color: inherit;
}

.partner-name a:hover,
.partner-contact a:hover {
  text-decoration: underline;
}

.partner-contact {
  font-size: 0.9rem;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.partner-separator {
  margin: 0 4px;
}

/* ==================================================
   11. PAGE MARIAGE – ÉTAPES
   ================================================== */

#mariage-etapes {
  padding-top: 40px;
  padding-bottom: 60px;
}

.mariage-etapes-layout {
  align-items: stretch;
}

/* Colonne image + bouton */
.mariage-etapes-image-wrapper {
  position: relative;
  border-radius: var(--rayon-carte);
  overflow: hidden;
  box-shadow: var(--ombre-carte);
}

.mariage-etapes-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bouton centré sous la photo */
.etapes-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Liste des cartes étapes */
.etapes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Carte étape (look plaquettes/avis) */
.etape-card {
  background-color: #ffffff;
  padding: 18px 22px 20px;
  border-radius: var(--rayon-carte);
  box-shadow: var(--ombre-carte);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* NUMÉRO : plus gros + très gras */
.etape-num {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--nuit);
  display: inline-block;
  margin-right: 8px;
  transform: translateY(1px);
}

/* TITRE étape */
.etape-title {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.35;
}

/* Texte étape */
.etape-text {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--texte-secondaire);
}

/* ==================================================
   12. PAGE MARIAGE – FORMULES (CARTES TEXTE + PHOTO)
   ================================================== */

#formules-mariage {
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Grille 3 colonnes */
.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

/* Carte globale */
.formule-card {
  background-color: #ffffff;
  border-radius: var(--rayon-carte);
  box-shadow: var(--ombre-carte);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); /* texte | photo */
  align-items: stretch;
}

/* Colonne texte */
.formule-texte {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Titre de formule */
.formule-titre {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

/* Intro sous le titre */
.formule-intro {
  margin: 4px 0 6px;
  font-size: 0.98rem;
  color: var(--texte-secondaire);
}

/* Liste des prestations */
.formule-liste {
  margin: 0;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Colonne image */
.formule-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.formule-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

/* Bouton "Cette formule m’intéresse" */
.formule-actions {
  margin-top: 12px;
}

/* Boutons formules : base */
.btn-formule,
.btn-formule:visited {
  background-color: #ffffff !important;
  color: var(--nuit) !important;
  border: 1px solid var(--nuit);
  border-radius: 0;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  gap: 8px;
}

/* Hover global (ombre légère, bandeau toujours blanc) */
.btn-formule:hover,
.btn-formule:focus-visible,
.btn-formule:active {
  background-color: #ffffff !important;
  color: var(--nuit) !important;
  border-color: var(--nuit) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Icône noire par défaut */
.btn-formule-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-noir@4x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background-image 0.2s ease;
}

/* Basique : picto vert quand on survole / clique */
.btn-formule-basique:hover .btn-formule-icon,
.btn-formule-basique:focus-visible .btn-formule-icon,
.btn-formule-basique:active .btn-formule-icon {
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-vert@4x.png");
}

/* Standard : picto orange */
.btn-formule-standard:hover .btn-formule-icon,
.btn-formule-standard:focus-visible .btn-formule-icon,
.btn-formule-standard:active .btn-formule-icon {
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/cropped-picto-orange@4x.png");
}

/* Premium : picto bleu */
.btn-formule-premium:hover .btn-formule-icon,
.btn-formule-premium:focus-visible .btn-formule-icon,
.btn-formule-premium:active .btn-formule-icon {
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-bleu@4x.png");
}

/* Petit feedback visuel sur le picto (sans toucher au bandeau) */
.btn-formule:hover .btn-formule-icon,
.btn-formule:focus-visible .btn-formule-icon,
.btn-formule:active .btn-formule-icon {
  opacity: 1;
  transform: scale(1.05);
}

/* ==================================================
   13. POPUP FORMULE (MODAL)
   ================================================== */

.formule-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.formule-modal.is-open {
  display: block;
}

.formule-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.formule-modal-dialog {
  position: relative;
  max-width: 520px;
  width: 90%;
  margin: 60px auto;
  background: #ffffff;
  padding: 24px 22px 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  border-radius: 0;
  z-index: 1;
}

/* CROIX DU POPUP FORMULE – petite, noire, sans contour */
.formule-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;

  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  color: #111111 !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition:
    transform 0.15s ease,
    color 0.15s ease;
}

/* suppression de TOUT contour au focus */
.formule-modal-close:focus,
.formule-modal-close:focus-visible,
.formule-modal-close:active {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Firefox : enlève le mini bord interne */
.formule-modal-close::-moz-focus-inner {
  border: 0 !important;
}

/* Effet au survol : plus grande et un peu plus "épaisse" visuellement */
.formule-modal-close:hover {
  transform: scale(1.25);
  color: #000000 !important;
}

.formule-modal-subtitle {
  font-size: 0.95rem;
  color: var(--texte-secondaire);
  margin-bottom: 10px;
}

.formule-modal-formule-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.formule-modal-formule-label span {
  color: var(--nuit);
}

.formule-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.formule-modal-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.formule-modal-field label {
  font-size: 0.9rem;
  font-weight: 600;
}

.formule-modal-field input,
.formule-modal-field textarea {
  border: 1px solid #d1d5db;
  padding: 8px 10px;
  font-size: 0.95rem;
  font-family: inherit;
}

.formule-modal-field textarea {
  resize: vertical;
}

.formule-modal-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==================================================
   14. GALERIE MARIAGE – SLIDESHOW FONDU
   ================================================== */

.galerie-fade-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--rayon-carte);
  overflow: hidden;
  box-shadow: var(--ombre-carte);
  background-color: transparent;
}

.galerie-fade-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
}

.galerie-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.galerie-slide img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  display: block;
}

/* Slide actif */
.galerie-slide.is-active {
  opacity: 1;
}

/* ==================================================
   15. FAQ (MARIAGE + AUTRES PAGES)
   ================================================== */

#faq-mariage {
  padding-top: 40px;
  padding-bottom: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-layout {
  align-items: flex-start;
  gap: 48px;
}

/* Intro (titre + texte + bouton) */
.faq-intro .section-header {
  margin-bottom: 1.5rem;
}

/* Liste FAQ (colonne droite) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Carte FAQ */
.faq-item {
  background-color: #ffffff;
  border-radius: var(--rayon-carte);
  box-shadow: var(--ombre-carte);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Bouton question */
.faq-question {
  width: 100%;
  padding: 14px 18px 12px;
  border: none;
  background-color: #ffffff; /* bandeau blanc par défaut */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

/* Texte de la question (avec soulignement bleu façon services) */
.faq-question-text {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: #111111;
  position: relative;
  padding-bottom: 3px;
}

/* Trait bleu progressif */
.faq-question-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #275aa8;
  transition: width 0.25s ease-in-out;
}

/* Au survol de la carte ou question ouverte */
.faq-item:hover .faq-question-text::before,
.faq-question[aria-expanded="true"] .faq-question-text::before {
  width: 100%;
}

/* Icône FAQ = pictogramme Peps */
.faq-icon-picto {
  width: 22px;
  height: 22px;
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-noir@4x.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  flex-shrink: 0;
}

/* À l'ouverture – légère rotation/zoom */
.faq-question[aria-expanded="true"] .faq-icon-picto {
  transform: rotate(90deg) scale(1.1);
}

/* Survol de la carte = logo bleu */
.faq-item:hover .faq-icon-picto {
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-bleu-clair@4x-1.png");
}

/* Réponse */
.faq-answer {
  padding: 0 18px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--texte-secondaire);
}

.faq-answer p {
  margin-top: 10px;
}

/* FAQ : bandeaux toujours blancs (MARIAGE) */
#faq-mariage .faq-question {
  background-color: #ffffff !important;
  color: #111111 !important;
}

#faq-mariage .faq-item:hover .faq-question,
#faq-mariage .faq-question[aria-expanded="true"] {
  background-color: #ffffff !important;
  color: #111111 !important;
}

/* FAQ MARIAGE : seul le picto change de couleur au survol */
#faq-mariage .faq-icon-picto {
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-noir@4x.png");
}

#faq-mariage .faq-item:hover .faq-icon-picto {
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-bleu-clair@4x-1.png");
}

/* FAQ ÉVÈNEMENTS PRIVÉS : même logique que mariage */
#faq-evenements .faq-question {
  background-color: #ffffff !important;
  color: #111111 !important;
}

#faq-evenements .faq-item:hover .faq-question,
#faq-evenements .faq-question[aria-expanded="true"] {
  background-color: #ffffff !important;
  color: #111111 !important;
}

#faq-evenements .faq-icon-picto {
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-noir@4x.png");
}

#faq-evenements .faq-item:hover .faq-icon-picto {
  background-image: url("https://pepsdrone.com/wp-content/uploads/2025/05/picto-bleu-clair@4x-1.png");
}

/* ==================================================
   16. HERO PORTFOLIO COMPACT
   ================================================== */

.hero-portfolio-compact {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.hero-portfolio-compact .hero-portfolio-inner {
  max-width: 960px;
  margin: 0 auto;
}

.hero-portfolio-compact .hero-kicker {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.hero-portfolio-compact h1 {
  margin-bottom: 1rem;
}

.hero-portfolio-compact .hero-intro {
  max-width: 52rem;
}

/* ==================================================
   17. LIGHTBOX PORTFOLIO
   ================================================== */

/* Bouton de fermeture */
.portfolio-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  border: none;
  background: transparent;
  color: #f9fafb;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;

  /* Empêche le navigateur d'appliquer un style rose/bleu au hover/focus */
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Survol + focus → léger effet premium, sans couleur rose */
.portfolio-lightbox-close:hover,
.portfolio-lightbox-close:focus {
  background: transparent !important;
  color: #ffffff;
  opacity: 0.75;
  transform: scale(1.08);
  outline: none !important;
  box-shadow: none !important;
}

/* ==================================================
   18. SECTION GALERIE CLIENTS (Lumys)
   ================================================== */

.peps-section-lumys {
  padding: 70px 0 100px;
}

/* Texte intro centré */
.peps-section-text-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.peps-section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.peps-section-lead {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Conteneur pleine largeur pour cette section */
.peps-section-lumys .peps-container {
  max-width: 100%;
  padding: 0;
}

#lumys-widget {
  width: 100%;
  max-width: 100%;
  min-height: 420px;
}

/* ==================================================
   19. RESPONSIVE GLOBAL
   ================================================== */

@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  /* Formules mariage : 1 par ligne */
  .formules-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ : empêcher le débordement sur mobile */
  .faq-question {
    flex-wrap: wrap;
  }

  .faq-question-text {
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
  }

  .faq-icon-picto {
    margin-left: auto;
    margin-top: 8px;
  }

  #hero-accueil .hero-cta-wrapper {
    justify-content: flex-start;
  }

  .pd-header-inner {
    padding: 20px 20px;
  }

  .pd-header-logo img {
    height: 52px;
  }

  .pd-header-nav {
    display: none;
  }

  .pd-header-burger {
    display: flex;
  }

  .pd-header-nav-mobile {
    display: flex;
  }

  main {
    padding: 20px 16px 60px;
  }

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

  .with-picto::after {
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .pd-footer-left,
  .pd-footer-right {
    padding: 16px;
  }

  .pd-footer-logo img {
    max-width: 200px;
  }

  .formule-card {
    grid-template-columns: 1fr;
  }

  .formule-image-wrapper {
    order: -1; /* image au-dessus sur mobile */
  }

  .formule-modal-dialog {
    margin: 40px auto;
    padding: 20px 16px 16px;
  }

  .formule-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .formule-modal-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .galerie-fade-inner {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 900px) {
  .peps-lumys-widget-wrapper {
    padding: 20px 16px;
    border-radius: 14px;
  }
}

/* ==================================================
   20. OVERRIDES WORDPRESS (gabarit Hello / Royal)
   ================================================== */

/* Forcer la famille de police Elza sur l'interface front */
body,
button,
input,
select,
textarea,
.pd-header,
.pd-footer-wrapper,
.site-main {
  font-family: "Elza", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Inter", sans-serif;
}

/* Neutraliser les contraintes de largeur du thème parent sur la home */
body.home .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Gérer la largeur du contenu principal */
body.home main#primary {
  max-width: 80%;
  margin: 0 auto;
  padding: 32px 12px 80px;
}

body.page main#primary {
  max-width: 80%;
  margin: 0 auto;
}

/* Éviter les marges ajoutées par le thème parent avant la première section */
body.home .site-main > section:first-child {
  margin-top: 0;
}

/* Fond général de la home */
body.home {
  background-color: #ffffff !important;
}

/* Zone de contenu + section avis sur home */
body.home .site-main,
body.home main#primary,
body.home #avis {
  background-color: #ffffff !important;
}
/* Limitation propre des images HERO (toutes pages) */
.hero-image,
.hero-image-wrapper img,
#hero-accueil .hero-image,
#hero-mariage .hero-image,
#hero-evenements .hero-image {
  width: 100%;
  max-width: 1920px;   /* affichage max, même si le fichier est plus grand */
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
/* Champ honeypot du formulaire de contact */
.peps-hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Optionnel : au cas où un lecteur d'écran y accède, mais ce champ n'est pas requis */
.peps-hp-field input {
  font-size: 0.01rem;
}
.peps-hp-wrapper {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
