/* ===================================================================
   BASE / GÉNÉRAL
   =================================================================== */

html {
    font-size: 16px; /* Taille de base, 1rem = 16px */
}

strong {
    font-weight: bold;
}


/* ===================================================================
   PAGE CONTACT_NEW
   =================================================================== */

/* ---------- Elements décoratifs ---------- */

.section-refonte {
    margin-top: 10%;
}

.champagne-refonte {
    height: 18rem;
    rotate: -12deg;
    margin-top: -20%;
}

.txt_3_refonte {
    padding: 0;
}

.text_1_refonte {
    font-size: 3rem;
    width: 30%;
    margin-top: 7%;
}


/* ---------- Structure générale ---------- */

.contact-wrapper {
    display: flex;
    width: calc(100% - 15%);
    margin: 5% auto;
    min-height: auto;
    border: 2px solid #000;
    font-family: 'Helvetica Neue', sans-serif;
}

.contact-left {
    width: 50%;
    padding: 4rem 5rem;
    background-color: #f8eeef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Helvetica Neue-Light';
}

.contact-right {
    width: 50%;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------- Titres ---------- */

.contact-left h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #00aaff;
    margin-bottom: 40px;
}


/* ---------- Formulaire ---------- */

.new-contact-form {
    display: flex;
    flex-direction: column;
}

.new-contact-form label {
    font-size: 12px;
    margin-bottom: 4px;
    display: block;
}

.new-contact-form input,
.new-contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #8c8c8c;
    background: transparent;
    font-size: 14px;
    padding: 8px 0;
    margin-bottom: 25px;
    outline: none;
}

.new-contact-form textarea {
    height: 80px;
    resize: none;
    padding-top: 0;
}


/* ---------- Bouton ---------- */

.send-btn {
    align-self: center;
    margin-top: 20px;
    font-size: 1.4rem;
    padding: 0.4rem 1rem 0.4rem;
    border-radius: 40px;
    border: 1px solid #000;
    cursor: pointer;
    background-color: #f8eeef;
    color: black;
    transition: 0.3s ease;
}

.send-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   BOUTON RIPPLE GÉNÉRIQUE
========================= */

.btn-ripple {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-ripple span {
    position: absolute;
    width: 0;
    height: 0;
    background: #24afec;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

/* Texte au-dessus */
.btn-ripple {
    z-index: 1;
}

/* Hover */
.btn-ripple:hover {
    color: black;
}

.btn-ripple:hover span {
    width: 400px;
    height: 400px;
}

/* ===================================================================
   PAGE ÉQUIPE
   =================================================================== */

.equipe-container {
    display: flex;
    align-items: flex-start;
    width: 70%;
    margin: 0 auto;
    padding: 1.25rem;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    margin-left: 15%;
}

.equipe-left {
    font-family: 'Helvetica Neue-Light', sans-serif;
    font-size: 3.4375rem;
    font-weight: bold;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipe-right {
    font-size: 1.5rem;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
}

.equipe-separator {
    height: 1px;
    width: 20%;
    background-color: #bbb;
    margin: 2% 0 0 0;
    margin-left: -12%;
}

.equipe-blue {
    color: #00A9E0;
}


/* ===================================================================
   PAGE ASSOCIÉ
   =================================================================== */

/* ---------- Structure générale ---------- */

.assoc-container {
    max-width: 1200px;
    margin: 10rem auto;
    display: flex;
    gap: 40px;
    /* padding: clamp(1rem, 3vw, 2rem) clamp(2rem, 8vw, 6rem); */
    height: 650px;
}

.assoc-text {
    flex: 1;
    color: #222;
    font-family: 'Helvetica Neue-Light', Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    padding: 2rem 3rem;
}

.assoc-title {
    font-size: 28px;
    margin: 0;
    font-weight: bold;
}

.assoc-subtitle {
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 20px;
}

.assoc-citation {
    font-weight: bold;
    color: #1bb5f5;
    margin-bottom: 20px;
    line-height: 1.4;
}

.assoc-text p {
    line-height: 1.55;
    margin-bottom: 20px;
}

.assoc-btn {
    align-self: center;
    padding: 10px 30px;
    border: 1px solid black;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-family: 'Helvetica Neue-Light';
    font-size: 14px;
}


/* ---------- Slideshow ---------- */

.assoc-image-wrapper {
    flex: 1;
    justify-content: center;
    align-items: center;
}

.assoc-slideshow {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.assoc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    opacity: 0;
    animation: assocFade 10s infinite;
}

.assoc-slide-1 { animation-delay: 0s; }
.assoc-slide-2 { animation-delay: 5s; }

@keyframes assocFade {
    0% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; }
    90% { opacity: 0; }
    100% { opacity: 1; }
}

@media (hover: hover) and (pointer: fine) {

    .assoc-slide {
        animation: none;
        transition: opacity 0.8s ease;
    }

    .assoc-slide-1 {
        opacity: 1;
    }

    .assoc-slide-2 {
        opacity: 0;
    }

    .assoc-slideshow:hover .assoc-slide-2 {
        opacity: 1;
    }

    .assoc-slideshow:hover .assoc-slide-1 {
        opacity: 0;
    }
}


/* --- STRUCTURE GLOBALE --- */

.contact-design-wrapper {
    margin: 6% auto;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #f9f1f1;
    font-family: 'Helvetica Neue-Light';
}

/* --- COLONNE GAUCHE --- */

.contact-design-left {
    flex: 1;
}

.contact-design-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-design-email {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.8rem;
}

.contact-design-text {
    font-size: 0.95rem;
    max-width: 350px;
    line-height: 1.5;
}

/* --- COLONNE DROITE --- */

.contact-design-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Wrapper du cercle */
.contact-circle-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
}

/* Effet hover : changer la couleur du texte au centre */
.contact-circle-wrapper:hover .contact-circle-center {
    color: #00A9E0;
    transition: color 0.3s ease;
}

/* Cercle rotatif */
.contact-circle-rotate {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    animation: rotateCircle 10s linear infinite;
}

.contact-circle-rotate img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Texte au centre */
.contact-circle-center {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: bold;
}

/* --- ANIMATION --- */

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==================== HERO (slideshow + bouton) =================== */
.hp-hero{
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.hp-hero-media{
  position: relative;
  width: 100%;
  height: 100%;
}

.hp-hero-slide{
  position: absolute;   /* IMPORTANT: empile les images */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding : 4% 0 0 0;
  opacity: 0;
  transition: opacity .7s ease;
}

.hp-hero-slide.active{
  opacity: 1;
}

.hp-hero-btns{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* on peut enlever si tes boutons doivent être cliquables */
}

/* Assure que les boutons empilés n'interceptent pas tous les events */
.hp-hero-btn {
  position: absolute;
  width: 80%;
  height: auto;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;         /* <-- par défaut, pas interactif */
  z-index: 1;                   /* placé sous l'actif */
}

/* Le seul bouton interactif / visible */
.hp-hero-btn.active {
  opacity: 1;
  pointer-events: auto;         /* <-- le seul qui capte le hover/clic */
  z-index: 10;                  /* <-- au-dessus des autres */
}

/* petits ajustements */
@media (max-width: 768px){
  .hp-hero{ aspect-ratio: 9 / 12; }
  .hp-hero-btn{ width: 100%; }
  .hp-hero-btn.active {z-index: 1;/* <-- au-dessus des autres */}
}

/* --------------------------- SECTION TITLE (traits + texte) ------------------------ */

.section-title {
    display: flex;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding: 3rem 0;
    box-sizing: border-box;
}

/* Trait gauche — PLUS COURT */
.section-title::before {
    content: "";
    height: 1px;
    background-color: #070606;
    width: 120px;
    margin-right: 1.2rem;
    transform: scaleY(0.5); /* Réduit l'épaisseur de la ligne */
}

/* Trait droit — PREND TOUT L’ESPACE RESTANT */
.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #070606;
    margin-left: 1.2rem;
    transform: scaleY(0.5); /* Réduit l'épaisseur de la ligne */
}

/* Texte */
.section-title span {
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    white-space: nowrap;
}

/* --------------------------------------------------
   📱 Responsive : tablette
-------------------------------------------------- */
@media (max-width: 992px) {
    .section-title {
        padding: 2.5rem 0;
    }

    .section-title::before {
        width: 90px;
        margin-right: 1rem;
    }

    .section-title::after {
        margin-left: 1rem;
    }

    .section-title span {
        font-size: 0.95rem;
    }
}

/* --------------------------------------------------
   📱 Responsive : mobile 
-------------------------------------------------- */
@media (max-width: 600px) {
    .section-title {
        padding: 2rem 0;
    }

    .section-title::before {
        width: 60px;         /* trait gauche plus court */
        margin-right: 0.8rem;
    }

    .section-title::after {
        margin-left: 0.8rem;
    }

    .section-title span {
        font-size: 0.85rem;  /* texte plus petit mais lisible */
        letter-spacing: 0.5px;
    }
}

/* --------------------------- SECTION ABOUT (TEXTE + IMAGE) ------------------------ */

.about-block {
    max-width: 1000px;         /* largeur max du bloc */
    margin: 3rem auto;         /* centre le bloc et ajoute espace haut/bas */
    border: 2px solid #000;    /* bordure visible tout autour */
    display: flex;
    align-items: stretch;
    overflow: hidden;          /* évite les débordements */
    box-sizing: border-box;
}
/* ------- COLONNE TEXTE ------- */
.about-text {
    width: 50%;
    padding: 7rem 2.8rem;
    box-sizing: border-box;
}

.about-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: none;
    font-family: 'Helvetica Neue-Light';
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.55rem;
    margin-bottom: 1rem;
    text-align: justify;
    font-family: 'Helvetica Neue-Light';

}

/* ------- COLONNE IMAGE ------- */
.about-image {
    width: 50%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ------ RESPONSIVE ------ */
@media (max-width: 900px) {
    .about-block {
        flex-direction: column;
    }

    .about-text, 
    .about-image {
        width: 100%;
    }

    .about-text {
        padding: 2rem 1.5rem;
    }

    .about-image img {
        height: auto;
    }
}


/* --------------------------- SECTION EXIGENCES (TEXTE) ------------------------ */

.nos_sections_exigence {
    margin-top: 0%;
}

.exigences-section {
    background-color: #F8EEEE; /* rose très pâle */
    padding: 6rem 3rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* TITRE */
.exigences-title {
    font-family: 'Helvetica Neue-Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;         /* légèrement plus grand pour matching du design */
    font-weight: bold;          /* correspond au “Light” */
    line-height: 2.85rem;      /* proche du rendu de ton image */
    letter-spacing: 0.03rem;   /* petit espacement subtil */
    text-transform: uppercase;
    margin: 0;
}

/* ------------------------ STRUCTURE LEFT BLOCK "BLOC CLIENT" --------------------- */

.wrapper-client {
    margin: auto;
}

.contact-clients-left {
    width: 50%;
    padding: 2rem 0;
    padding-right: 3rem; /* espace entre texte et cercle */
    box-sizing: border-box;
}

/* --- TITRE --- */
.clients-title {
    font-family: 'Helvetica Neue-Light';
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.3rem;
}

.clients-title span {
    font-style: italic;
}

/* --- LISTE --- */
.clients-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clients-list li {
    font-family: 'Helvetica Neue-Light';
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.25s ease;
}

/* HOVER → devient bleu */
.clients-list li:hover {
    color: #1BB5F5;
}

@media (max-width: 850px) {

    .contact-design-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-clients-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 2.5rem;
    }

    .clients-list li {
        font-size: 1.5rem;
    }
}

/* --------------- CSS PAGE MARIAGE ------------------------- */

/* STRUCTURE GLOBALE */

.section-titre {
    margin-top: 10%;
}

.wedding-row {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    align-items: flex-start;   /* ← remonte tout le contenu */
    justify-content: center;
    gap: 4rem;                 /* plus d’air entre les blocs */
    box-sizing: border-box;
}

/* BLOC DE GAUCHE — TITRE PLUS GRAND */
.wedding-left {
    text-align: left;
    min-width: 260px;
}

.wedding-title {
    font-family: 'Helvetica Neue-Light', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem); /* ← titre responsive */
    font-weight: 600;
    line-height: 0.95;                 /* ← compacité visuelle */
    margin: 0;
}

.corpo-title {
    font-size: clamp(3rem, 6vw, 5rem);
}

.wedding-title span {
    color: #00A9E0;
}

/* TRAIT CENTRAL */
.wedding-divider {
    width: 140px;      /* légèrement plus long */
    height: 1px;
    background-color: #000;
    opacity: 0.4;
    margin-top: 2rem;  /* ← remonte le trait */
    flex: 0 0 auto;
}

/* BLOC DE DROITE */
.wedding-right {
    margin-top: 0.5rem; /* ← remonte légèrement le bloc droit */
}

.wedding-right p {
    font-family: 'Helvetica Neue-Light', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
    white-space: nowrap;
}

/* =============================
   📱 RESPONSIVE
   ============================= */

/* TABLETTES */
@media (max-width: 850px) {
    .wedding-row {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .wedding-divider {
        width: 50%;
        margin-top: 0.5rem;
    }

    .wedding-right p {
        white-space: normal;
        text-align: center;
    }
}

/* PETITES TABLETTES + GROS TÉLÉPHONES */
@media (max-width: 600px) {
    .wedding-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .wedding-divider {
        width: 60%;
    }
}

/* TÉLÉPHONES */
@media (max-width: 430px) {
    .wedding-row {
        padding: 2rem 1rem;
    }

    .wedding-title {
        font-size: clamp(2rem, 14vw, 3.5rem);
    }

    .wedding-divider {
        width: 70%;
    }
    
}

/*************************************CSS ANIMATION MARIAGE***********************************/

.mariage-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* BOUTON */
.btn-mariage-hero {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    border: 1px solid #000;
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: 0.3s;
    float: right;
    color: black;
}

.cards-4 {
  --numcards: 4;
}

@media (max-width: 768px) {
    .btn-mariage-hero {
        float: none;
        display: block;
        margin: 1.5rem 0;
    }
    
    .mariage-paragraph {
        font-size: 0.7rem;
        width: 85%;
    }
}

/************************SECTION DECOR A VOTRE IMAGE************************

/* =========================
   STRUCTURE GLOBALE
========================= */
.creation-row {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr; /* ← gauche plus large */
    align-items: stretch; /* même hauteur */
    box-sizing: border-box;
}

/* =========================
   BLOC GAUCHE
========================= */
.creation-left {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centré verticalement */
    gap: 0.5rem;
    padding-right: 3rem;
    font-family: 'Helvetica Neue-Light', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    height: 500px;
}

.creation-highlight {
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.25s ease;
}

/* Hover bleu */
.creation-line:hover {
    color: #00A9E0;
}

/* =========================
   BLOC CENTRAL (IMAGE)
========================= */
.creation-middle {
    height: 100%;
}

.creation-middle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   BLOC DROIT (TEXTE)
========================= */
.creation-right {
    height: 100%;
    display: flex;
}

.creation-box {
    border: 1px solid #000;
    padding: 2rem;
    background-color: #f9f1f1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.creation-box h3 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue-Light', sans-serif;
}

.creation-box p {
    font-size: 0.85rem;
    line-height: 1.6;
    font-family: 'Helvetica Neue-Light', sans-serif;
}

.creation-line {
  cursor: pointer;
  transition: color 0.25s ease;
}

.creation-line.active {
  color: #00A9E0;
}

/* Transition image */
.creation-middle img {
  transition: opacity 0.35s ease;
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 1024px) {

    .creation-row {
        grid-template-columns: 1.3fr 1fr 1fr;
        padding: 3rem 1.5rem;
    }

    .creation-left {
        padding-right: 2rem;
        font-size: 1.3rem;
    }

    .creation-highlight {
        font-size: 1rem;
    }

    .creation-box {
        padding: 1.5rem;
    }

    .creation-box h3 {
        font-size: 0.85rem;
    }

    .creation-box p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {

    .creation-row {
        display: flex;
        flex-direction: column;
        padding: 1rem 1.2rem;
        gap: 2rem;
    }

    /* Bloc gauche */
    .creation-left {
        padding-right: 0;
        align-items: center;
        text-align: center;
        font-size: 1.5rem;
        height: fit-content;
        gap: 0.7rem;
    }

    .creation-highlight {
        font-size: 1.05rem;
    }

    /* Image */
    .creation-middle {
        height: 500px;
    }

    .creation-middle img {
        height: 100%;
    }

    /* Bloc droit */
    .creation-right {
        height: auto;
    }

    .creation-box {
        padding: 1.5rem;
        text-align: center;
    }
}

/************************SECTION INVITEZ HOP********************************/

.invitez-hop {
  background-color: #f7efec;
  padding: 80px 100px;
}

.invitez-hop__content {
  max-width: 1200px;
}

.invitez-hop__title {
  font-family: 'Helvetica Neue-Light', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.invitez-hop__bottom {
  display: flex;
  align-items: end;
  gap: 30px;
  justify-content: end ;
  margin-top: -2%;
}

.invitez-hop__line {
  display: block;
  width: 575px;
  height: 1px;
  background-color: #000;
}

.invitez-hop__cta {
  font-family: 'Helvetica Neue-Light', sans-serif;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: max-content;
  .invitez-hop__cta {
  white-space: nowrap;
  width: max-content;
  flex-shrink: 0;
}

}

@media (max-width: 768px) {
  .invitez-hop__line {
    width: 120px;
  }
  
  .invitez-hop__bottom {
    margin-top: 5%;
  }
}


/*******************PAGE BLOGUE************************************/

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #f9f1f1;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}

/* Carte */
.real-card {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  flex-direction: column;
  background-color: #f9f1f1;
}

/* Image */
.real-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Texte */
.real-text {
  padding: 1.5rem;
  font-family: 'Helvetica Neue-Light', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
}

.real-desc {
  margin-bottom: 1.2rem;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* ← NOMBRE DE LIGNES IDENTIQUE */
  overflow: hidden;

  line-height: 1.6;
}

.real-meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.real-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* œil aligné en haut du texte */
    gap: 1rem;
    margin-top: auto;
}

.real-meta {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
    font-family: 'Helvetica Neue-Light';
}

.real-eye {
    width: 35%;
    height: 37px;
    flex-shrink: 0;

    background-image: url("../img/icon-plus.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    cursor: pointer;
    transition: background-image 0.25s ease;
}

.real-eye:hover {
    background-image: url("../img/icon-plus-hover.svg");
}


/* ----------------- RESPONSIVE ----------------- */

/* ----------------- RESPONSIVE ----------------- */

/* TABLETTE */
@media (max-width: 1024px) {
  .realisations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .real-card img {
    height: 320px;
  }

  .real-text {
    padding: 1.25rem;
    font-size: 0.85rem;
  }

  .real-eye {
    width: 40px;
    height: 40px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .realisations-grid {
    grid-template-columns: 1fr;
  }

  .real-card img {
    height: 260px;
  }

  .real-text {
    padding: 1.2rem;
    font-size: 0.85rem;
  }

  .real-footer {
    align-items: center; /* meilleur équilibre mobile */
  }

  .real-meta {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .real-eye {
    width: 36px;
    height: 36px;
  }
  
  .invitez-hop {
    padding: 50px 15px;
  }
}

/************************CSS MODELE BLOGUE****************************/

/* =========================
   RETOUR (bouton capsule)
========================= */
.blog-mariage-back {
    max-width: 90%;
    margin: 10rem auto 0.8rem auto;
}

.blog-mariage-back a {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid #000;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: transparent;
  font-family: 'Helvetica Neue-Light', sans-serif;
  transition: all 0.25s ease;
}

/* =========================
   WRAPPER GLOBAL
========================= */
.blog-mariage-wrapper {
  max-width: 90%;
  margin: 0 auto;
  border: 1px solid #000;
  background-color: #f9f1f1;
  font-family: 'Helvetica Neue-Light', sans-serif;
}

/* =========================
   IMAGE HERO
========================= */
.blog-mariage-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* =========================
   CONTENU TEXTE
========================= */
.blog-mariage-content {
  padding: 2.5rem 11rem;
}

.blog-mariage-title {
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.blog-mariage-intro {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* =========================
   ITEMS NUMÉROTÉS
========================= */
.blog-mariage-item {
  margin-bottom: 1.8rem;
}

.blog-mariage-item h3 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.blog-mariage-item p {
  font-size: 0.8rem;
  line-height: 1.7;
}

/* ===============================
   NAVIGATION BLOG (PRÉCÉDENT / SUIVANT)
=============================== */
.blog-nav-capsules {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 2.5rem 0 3.5rem;
  background-color: #f9f1f1;
}

.blog-nav-btn {
  display: inline-block;
  padding: 0.45rem 1.4rem;
  border: 1px solid #000;
  border-radius: 999px;
  font-family: 'Helvetica Neue-Light', sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: transparent;
  transition: all 0.25s ease;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .blog-mariage-content {
    padding: 2.2rem 2rem;
  }
}

@media (max-width: 768px) {
  .blog-mariage-back {
    margin: 8.5rem auto 0.8rem auto;
  }

  .blog-mariage-hero img {
    height: auto;
  }

  .blog-mariage-content {
    padding: 2rem 1.5rem;
  }

  .blog-mariage-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-mariage-back a {
    font-size: 0.65rem;
    padding: 0.35rem 1rem;
  }

  .blog-mariage-intro {
    font-size: 0.8rem;
  }

  .blog-nav-capsules {
    padding: 2rem 0 3rem;
  }
}

/************************CSS MODELE REALISATION****************************/

.auto-gallery {
  display: grid;
  width: 100%;
  grid-auto-flow: dense;
}

.auto-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.real-image-wrapper {
  position: relative;
  z-index: 2;

  width: 100%;
  height: auto; 
  overflow: hidden;
}

.real-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.real-item {
  position: relative;
}



.layout-1 {
  grid-template-columns: 1fr;
}
.layout-2 {
  grid-template-columns: 1fr 1fr;
}
.layout-3 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.layout-3 img:nth-child(1) {
  grid-row: span 2;
}
.layout-4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.layout-5,
.layout-6 {
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 300px;
}

.layout-5 img:first-child,
.layout-6 img:first-child {
  grid-row: span 2;
}

.layout-7 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: clamp(180px, 60vw, 350px);
}


.layout-7 img:nth-child(1) {
  grid-column: 1;
  grid-row: span 2;
}

.layout-7 img:nth-child(2) {
  grid-column: 2 / span 2;
  grid-row: 1;
}

.layout-7 img:nth-child(3) {
  grid-column: 2 / span 2;
  grid-row: 2;
}


.layout-7 img:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.layout-7 img:nth-child(5) {
  grid-column: 2;
}

.layout-7 img:nth-child(6) {
  grid-column: 3;
  grid-row: 3;
}

.layout-7 img:nth-child(7) {
  grid-column: 1 / -1;
  grid-row: span 2;
}

.layout-7 img:nth-child(2),
.layout-7 img:nth-child(3),
.layout-7 img:nth-child(4),
.layout-7 img:nth-child(5),
.layout-7 img:nth-child(6) {
  aspect-ratio: 1 / 1;
}

.layout-7 img:nth-child(1),
.layout-7 img:nth-child(7) {
  aspect-ratio: auto;
}


.layout-many {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* BOUTON CENTRÉ */
.real-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.real-btn:hover {
  background: #000;
  color: #fff;
}

.real-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.real-accordion.open {
  max-height: 3000px; /* volontairement large */
}

@media (max-width: 1024px){

  /* Layout 3 → passe en 2 colonnes égales */
  .layout-3{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .layout-3 img:first-child{
    grid-row:auto;
  }

  /* Layout 5 / 6 → 2 colonnes */
  .layout-5,
  .layout-6{
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(180px, 25vw, 260px);
  }

  .layout-5 img:first-child,
  .layout-6 img:first-child{
    grid-row:auto;
  }

  /* Layout many → plus confortable */
  .layout-many{
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  }

}

@media (max-width: 768px){

  .auto-gallery{
    grid-template-columns: 1fr;
    grid-auto-rows:auto;
    gap:0;
  }

  .auto-gallery img{
    width:100%;
    height:auto;
    aspect-ratio:4/3;
  }

  /* Reset tous layouts */
  .layout-1,
  .layout-2,
  .layout-3,
  .layout-4,
  .layout-5,
  .layout-6,
  .layout-7,
  .layout-many{
    grid-template-columns:1fr !important;
    grid-auto-rows:auto !important;
  }

  .layout-1 img,
  .layout-2 img,
  .layout-3 img,
  .layout-4 img,
  .layout-5 img,
  .layout-6 img,
  .layout-7 img,
  .layout-many img{
    grid-column:auto !important;
    grid-row:auto !important;
    aspect-ratio:4/3 !important;
  }

}

/* ===================================================================
   RESPONSIVE (TOUTES SECTIONS)
   =================================================================== */

/* ----------------------- 1024px ----------------------- */

@media (max-width: 1024px) {

    /* ÉQUIPE */
    .equipe-container { width: 85%; margin-left: 10%; }
    .equipe-left { font-size: 3rem; }
    .equipe-right { font-size: 1rem; }
    .equipe-separator { width: 25%; }
    .section-titre {margin-top: 15%;}
}

/* ----------------------- 900px ----------------------- */

@media (max-width: 900px) {
    .contact-design-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .contact-design-email {
        font-size: 2.2rem;
    }

    .contact-design-text {
        margin: 0 auto;
    }
}

/* ----------------------- 992px ----------------------- */

@media (max-width: 992px) {

    /* CONTACT */
    .contact-wrapper {
        width: 90%;
        margin: 5% auto;
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left {
        padding: 3rem 3rem;
    }

    .contact-right img {
        height: 350px;
        object-fit: cover;
    }

    .send-btn {
        font-size: 1.25rem;
        padding: 0.1rem 0.9rem;
        border-radius: 38px;
    }

    /* ASSOCIÉ */
    .assoc-container {
        gap: 30px;
        padding: clamp(1rem, 3vw, 2rem) clamp(2rem, 6vw, 4rem);
    }

    .assoc-text { padding: 1.5rem 2rem; }
    .assoc-title { font-size: 26px; }
    .assoc-slideshow { max-width: 380px; }

}


/* ----------------------- 768px ----------------------- */

@media (max-width: 768px) {

    /* ÉQUIPE */
    .equipe-container { width: 90%; margin-left: 5%; }
    .equipe-left { font-size: 2.5rem; }
    .equipe-right { font-size: 0.875rem; }
    .equipe-separator { width: 30%; }
    .equipe-left, .equipe-right { padding-left: 0; }

    /* ASSOCIÉ */
    .assoc-container {
        flex-direction: column-reverse;
        gap: 20px;
        margin: 0rem auto;
        height: auto;
    }
    
    .assoc-text {
        padding: 1rem;
    }

    .assoc-title,
    .assoc-subtitle,
    .assoc-citation {
        text-align: center;
    }

    .assoc-btn {
        margin-top: 15px;
        padding: 10px 13px;
    }

    .assoc-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .assoc-slideshow {
        aspect-ratio: 3 / 5; /* un peu plus vertical sur mobile */
        max-width: 300px;
    }
}


/* ----------------------- 600px ----------------------- */

@media only screen and (max-width: 600px) {

    /* REFONTE */
    .text_1_refonte {
        font-size: 1.1rem;
        width: 40%;
        margin-top: 7%;
    }

    .champagne-refonte {
        height: 10rem;
    }

    /* CONTACT */
    .contact-wrapper {
        width: 95%;
        margin: 8% auto;
    }

    .contact-left {
        padding: 2rem 1.5rem;
    }

    .contact-left h2 {
        font-size: 18px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .new-contact-form label {
        font-size: 11px;
    }

    .new-contact-form input,
    .new-contact-form textarea {
        font-size: 13px;
    }

    .contact-right img {
        height: 250px;
    }

    .send-btn {
        font-size: 1.15rem;
        padding: 0.1rem 0.8rem;
        border-radius: 35px;
    }
}

/* ----------------------- 500px ----------------------- */

@media (max-width: 500px) {
    .contact-circle-wrapper {
        width: 200px;
        height: 200px;
    }
}

/* ----------------------- 480px ----------------------- */

@media (max-width: 480px) {

    /* ÉQUIPE */
    .equipe-container { width: 100%; padding: 1rem; }
    .equipe-left { font-size: 0.85rem; margin-left: 0; }
    .equipe-right { font-size: 0.875rem; padding-left: 2rem; }
    .equipe-separator { width: 15%; margin-left: 0; }

    /* ASSOCIÉ */
    .assoc-container { padding: 1rem; }
    .assoc-text { padding: 0.8rem; }
    .assoc-title { font-size: 22px; }
    .assoc-slideshow { max-width: 260px; }
}
