@font-face {
  font-family: 'Montserrat-Regular';
  src: url('/fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
    url('/fonts/Montserrat/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('/fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
    url('/fonts/Montserrat/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}




body {
  margin: 0;
  font-family: 'Montserrat-Regular', serif;
  background: #fdfdfd;
  color: #333;
}


.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2 {
  font-family: 'Montserrat-SemiBold', serif;
  text-align: center;
  margin-bottom: 1rem;
}

h3 {
  color: #b76e79;
}





/*fin responsible*/

.hero-bandeau-conteneur {
  display: flex;
  justify-content: center;
  padding: 0 2rem;
  /* <= ce padding crée un cadre sur les côtés */
  margin-top: 80px;
}

@media (max-width: 768px) {
  .hero-bandeau-conteneur {
    padding: 0;
    /* plus de marge sur les côtés */
    margin: 0;
    /* plus d’espace blanc en haut */
    width: 100%;
  }
}

.hero-bandeau {
  position: relative;
  height: 600px;
  width: 100%;
  max-width: 1200px;
  border-radius: 30px;
  /* arrondi */
  box-shadow: 8px 12px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  /* coupe l’image selon le radius */
  background: transparent !important;
  /* enlève tout fond blanc */
}

@media (max-width: 480px) {
  .hero-bandeau {
    max-width: 100%;
    /* plus limité à 1200px */
    border-radius: 30px;
    /* supprime les coins arrondis */
    box-shadow: none;
    /* supprime l’ombre */
  }
}



.hero-bandeau img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* l’image recouvre tout le bloc */
  object-position: center;
  /* centre l’image */
  border-radius: inherit;
  /* suit l’arrondi du parent */
  display: block;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* recouvre tout */
  display: block;
}

.hero-text-overlay {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}



@media (max-width: 480px) {
  .hero-text-overlay {
    bottom: 0.1rem;
    /* encore plus bas en petit écran */
  }
}

.hero-bandeau .hero-text-overlay h1 {
  font-size: 2.4rem !important;
  /* desktop */
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  /* reste sur une ligne */
  text-align: center;
}

@media (max-width: 768px) {
  .hero-bandeau .hero-text-overlay h1 {
    font-size: 2rem !important;
    /* tablette */
    margin-top: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .hero-bandeau .hero-text-overlay h1 {
    font-size: 1.8rem !important;
    /* mobile */
    margin-top: 1.2rem !important;
  }
}

@media (max-width:480px) {
  .hero-bandeau {
    height: 58vh;
    box-shadow: none;
  }
}


.hero-text-overlay p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-bandeau .hero-text-overlay p {
    font-size: 1rem !important;
    /* tablette */
    margin-top: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .hero-bandeau .hero-text-overlay p {
    font-size: 0.85rem !important;
    /* mobile */
    margin-top: 0.5rem !important;
    ;
  }
}


/* pour shooting-inspiration uniquement  */
.love-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.love-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #623e2a;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0 1rem;
  font-weight: bold;
}

@media (max-width: 480px) {
  .love-text {
    font-size: 0.85rem ;
    margin-bottom: -1rem;
  }
}


/* LOUIS SECTION */

/* Section conteneur */
.galerie-sans-texte {
  max-width: 1400px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}



/* Masonry en colonnes (auto-mix des tailles) */
.photo-masonry {
  columns: 4 260px;
  /* jusqu’à 4 colonnes, min 260px */
  column-gap: 14px;
}

.photo-masonry img {
  width: 100%;
  display: block;
  margin: 0 0 14px;
  break-inside: avoid;
  /* évite les coupures d’image */
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.photo-masonry img:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}


/* Conteneur de la galerie */


/* Carte portrait uniforme */
.galerie {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.galerie h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  text-align: center;
  margin-bottom: 1.5rem;
}

.grid-galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(10px, 2vw, 18px);
}










/* Carte avec ratio fixe */
.carte-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  /* portrait uniforme */
  overflow: hidden;
  border-radius: 16px;
  background: #f5f5f5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  cursor: pointer;
  /* plus la loupe */
}

.carte-photo>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* recadre dans le cadre */
  object-position: center;
  display: block;
  transition: transform .5s ease;
}

.carte-photo:hover>img {
  transform: scale(1.1);
}

.photo-masonry .carte-photo {
  display: block;
  break-inside: avoid;
  /* clé pour le style Pinterest */
  margin: 0 0 14px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  /* neutralise les réglages "carte-photo" pensés pour la grille uniforme */
  aspect-ratio: auto;
  max-height: none;
}

.photo-masonry .carte-photo>img {
  width: 100%;
  height: auto;
  /* garder la hauteur naturelle */
  display: block;
  object-fit: cover;
  transition: transform .25s ease, box-shadow .25s ease;
}

.photo-masonry .carte-photo:hover>img {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}


/* Responsive */
@media (max-width: 1024px) {
  .photo-masonry {
    columns: 3 220px;
    column-gap: 12px;
  }
}

@media (max-width: 700px) {
  .photo-masonry {
    columns: 2 160px;
    column-gap: 10px;
  }
}

.carte-photo {
  max-height: 320px;
  /* limite la hauteur */
}

@media (max-width: 420px) {
  .photo-masonry {
    columns: 1 100%;
  }
}





/* --- Lightbox intégrée (fallback si tu n’en as pas déjà une) --- */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lb-overlay.open {
  display: flex;
}

.lb-content {
  position: relative;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
}

.lb-content img {
  max-width: 100%;
  max-height: 88vh;
  display: block;
  border-radius: 8px;
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font: 600 16px/1 system-ui, sans-serif;
  background: rgba(255, 255, 255, .14);
  border: none;
  padding: .6rem .8rem;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  transition: background .2s ease;
  color: #fff;
}

.lb-close {
  top: 24px;
  right: 24px;
  transform: none;
}

.lb-prev {
  left: -52px;
}

.lb-next {
  right: -52px;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, .24);
}

/* Si l’écran est étroit, garde les flèches proches */
@media (max-width: 800px) {
  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }
}






/* TÉMOIGNAGE */
.testimonial {
  padding: 3rem;
  text-align: center;
  font-style: italic;
  font-size: 1.05rem;
  background: #fff6f7;
  max-width: 1200px;
  /* largeur maximum du bloc */
  margin: 0 auto;
  /* centre le bloc horizontalement */
  padding: 20px;
  /* un peu d'espace autour du texte */
  text-align: center;
  /* pour centrer le texte si tu veux */
  width: 70%;
  border-radius: 30px;
}

.testimonial blockquote {
  line-height: 1.4;
  text-align: center;
  font-family: 'Lato-Regular', sans-serif;
  color: #623e2a;
}

.signature {
  font-weight: bold;
  color: #b76e79;
  margin-top: 1rem;
  font-family: 'Lato-BoldItalic', sans-serif;
}

.big-space {
  display: block;
  margin-bottom: 1rem;
  /* espace supplémentaire */
}


/* 📱 Version mobile */
@media (max-width: 600px) {
  .testimonial {
    width: 90%;
    padding: 1.2rem;
    font-size: 0.80rem;

    /* texte un peu plus petit */
  }

  .testimonial blockquote {
    line-height: 1.6;
    text-align: justify;
    /* texte justifié */
  }

  .signature {
    font-size: 0.9rem;
  }
}


/* CREDITS */
.infos-sup {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.infos-sup p {
  margin: 0.5rem 0;
  margin: 0 14px 16px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  text-align: center;
}

.infos-sup a {
  color: #b76e79;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.infos-sup a:hover {
  color: #000;
}


.mariage-item {
  text-align: center;
  /* centre tout dans la carte */
  padding: 12px;
  font-family: 'Lato-BoldItalic';
}

.ligne-haut,
.ligne-bas {
  display: flex;
  justify-content: center;
  /* centre horizontalement */
  align-items: center;
  margin: 6px 0;
  gap: 8px;
  /* espace entre icône et texte */
}

.mariage-item i {
  color: #b76e79;
  font-size: 1rem;
}

.mariage-item a {
  color: #623e2a;
  /* couleur du texte */
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s;
}

.mariage-item a:hover {
  color: #b76e79;
  /* effet au survol */
}

/* 📱 Version mobile */
@media (max-width: 600px) {
  .infos-sup {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .infos-sup p {
    font-size: 0.8rem;
  }

  .infos-sup a {
    font-size: 0.8rem;
  }
}


.trait-anim line {
  stroke: #b76e79;
  /* couleur du trait */
  stroke-width: 0.2;
  /* épaisseur */
  stroke-dasharray: 200;
  /* longueur totale du trait */
  stroke-dashoffset: 200;
  /* on cache le trait au départ */
  opacity: 1;
  /* optionnel : visible dès le départ */
  animation: draw 1s linear forwards;
  animation-play-state: paused;
  /* le JS le mettra en 'running' */
}

.trait-anim.is-visible line {
  animation-play-state: running;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}






/* AUTRES MARIAGES */

:root {
  --rose: #b76e79;
}

/* Cartes circulaires */
.circular-card {
  position: relative;
  flex: 0 0 calc((100% - (1.5rem * 2)) / 3);
  /* 2 gaps pour 3 cartes */
  height: 200px;
}

.circle-link {
  display: block;
  position: absolute;
  top: 25px;
  left: 25px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-link:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.circle-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.circle-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  font-size: 12px;
  font-weight: 600;
  fill: #444;
  font-family: 'Playfair Display', serif;
  pointer-events: none;
}

/* Conteneur carrousel */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  padding: 0 50px;

}

/* Bords en fondu */
.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  pointer-events: none;
  z-index: 5;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(90deg, #fff 40%, transparent);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(-90deg, #fff 40%, transparent);
}

/* Ligne des cartes (une seule ligne) */
.circular-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  /* écart réduit entre les cartes */
  padding: 1rem 0;
  /* juste vertical pour éviter l'effet trop espacé */
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.circular-group::-webkit-scrollbar {
  display: none;
}

/* Flèches */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity .2s ease, transform .15s ease, background .2s ease;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: #fff;
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.carousel-arrow.left {
  left: 6px;
}

.carousel-arrow.right {
  right: 6px;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--rose);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow.disabled {
  opacity: .25;
  pointer-events: none;
}

/* Accessibilité : texte masqué */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}







/* RESPONSIVE : tablette et mobile */
@media screen and (max-width: 768px) {
  .hero-bandeau {
    height: 250px;
    padding: 1rem;
  }

  .hero-text-overlay {
    padding: 1rem 1.5rem;
  }

  .hero-text-overlay h1 {
    font-size: 1.8rem;
  }

  .hero-text-overlay p {
    font-size: 1rem;
  }

  .louise-gallery,
  .previews {
    flex-direction: column;
    align-items: center;
  }

  .louise-gallery img,
  .preview-card {
    width: 90%;
  }



  .hero-overlay {
    padding: 1.5rem;
    min-width: auto;
  }
}

.ambiance-flex img {
  max-width: 100%;
  max-height: 300px;
}

.infos-sup p {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.6;
}

.photo-grid img {
  max-width: 100%;
  max-height: 300px;
}


/* 2 sur tablette */
@media (max-width: 1024px) {
  .circular-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

/* STOP chevauchement en mobile : chaque carte occupe son diamètre */
@media (max-width: 600px) {
  .circular-group {
    gap: 16px;
    padding: 8px 0;
    align-items: center;
  }

  .circular-card {
    --d: clamp(180px, 68vw, 240px);
    /* diamètre fluide */
    width: var(--d);
    height: var(--d);
    flex: 0 0 var(--d);
    /* <- clé : largeur fixe = diamètre */
    position: relative;
  }

  .circle-text {
    width: var(--d);
    height: var(--d);
    font-size: clamp(10px, 2.6vw, 12px);
  }

  .circle-link {
    width: calc(var(--d) * 0.68);
    height: calc(var(--d) * 0.68);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* centrée pile */
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }
}

/* flèches bien centrées */
.carousel-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.carousel-arrow.left {
  left: clamp(6px, 2vw, 16px);
}

.carousel-arrow.right {
  right: clamp(6px, 2vw, 16px);
}






/* Section pour credit shootong wild in loves */
.participants {
  margin-top: 50px;
  text-align: center;
}

.participants h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #623e2a;
}

.participants p {
  color: #7a5c5c;
  margin-bottom: 32px;
  font-style: italic;
}

/* Grille */
.participants-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: left;
}

/* Chaque item */
.participants-list li {
  border-left: 3px solid #b76e79;
  /* ton rose signature */
  padding-left: 14px;
  transition: border-color .2s ease;
}

.participants-list li:hover {
  border-color: #5b3238;
  /* ton vert-gris */
}

/* Rôle */
.participants-list li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #623e2a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Liens */
.participants-list li a {
  color: #b76e79;
  text-decoration: none;
  font-size: 0.95rem;
  margin-right: 6px;
  position: relative;
  padding-bottom: 2px;
}

.participants-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #b76e79;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.participants-list li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Smartphones */
@media (max-width: 480px) {
  .participants {
    margin-top: 36px;
    text-align: left;
    /* lecture plus naturelle sur mobile */
    padding: 0 12px;
  }

  .participants h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .participants p {
    font-style: normal;
    /* moins d’italique pour la lisibilité */
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #6a4f4f;
  }

  .participants-list {
    max-width: 100%;
    grid-template-columns: 1fr;
    /* 1 colonne sur mobile */
    gap: 16px;
  }

  .participants-list li {
    border-left-width: 2px;
    /* plus fin sur mobile */
    padding-left: 12px;
  }

  .participants-list li strong {
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
  }

  /* liens plus “touch-friendly” et qui passent joliment à la ligne */
  .participants-list li a {
    display: inline-block;
    padding-bottom: 3px;
    /* cible tactile un peu plus grande */
    margin-right: 8px;
    margin-bottom: 6px;
    /* retour à la ligne aéré */
    font-size: 0.98rem;
  }

  .participants-list li a::after {
    height: 2px;
    /* soulignement un poil plus visible */
  }
}

/* Petites tablettes */
@media (min-width: 481px) and (max-width: 768px) {
  .participants-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .participants h2 {
    font-size: 1.6rem;
  }
}

/* Accessibilité – réduit les animations si l’utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  .participants-list li a::after {
    transition: none;
  }
}



/*Vidéo du shooting*/

.galerie-item {
  max-width: 30%;
  height: auto;
  border-radius: 10px; /* si tes photos ont des coins arrondis */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* si tu veux la même ombre */
  display: block;
  margin: 20px auto 0;
}
.h2-video{
  margin: 50px auto 0;
}

