:root {
    --btn-color: #3B2A24;
    --btn-color-hover: #B67A5B;
    --fond-bordeaux: #2D0329;
    --texte-color: #000000;
    --title-H1: 96px;
    --title-H2: 64px;
    --color-cards: #7A5C4D;
    --font-texte: "Manrope", sans-serif;
    --font-titre: "Fraunces", serif;
    --font-sous-titre: "Satisfy", cursive;
}



.body {
  font-family: "Fraunces", serif;
  color:#F5EDE7;
  font-size: 96px;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}


[class*="col-"] {
    min-height: 80px;
    padding: 0 10px;
    box-sizing: border-box;
}

.col-1 { flex-basis: 8.33%; max-width: 8.33%;}
.col-2 { flex-basis: 16.66%; max-width: 16.66%;}
.col-3 { flex-basis: 25%; max-width: 25%;}
.col-4 { flex-basis: 33.33%; max-width: 33.33%;}
.col-5 { flex-basis: 41.66%; max-width: 41.66%;}
.col-6 { flex-basis: 50%; max-width: 50%;}
.col-7 { flex-basis: 58.33%; max-width: 58.33%;}
.col-8 { flex-basis: 66.66%; max-width: 66.66%;}
.col-9 { flex-basis: 75%; max-width: 75%;}
.col-10 { flex-basis: 83.33%; max-width: 83.33%;}
.col-11 { flex-basis: 91.66%; max-width: 91.66%;}
.col-12 { flex-basis: 100%; max-width: 100%;}

/*****navigation*****/

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(101, 67, 33, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Menu Desktop */

.navigation-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation-menu li:not(:last-child) {
    margin-right: 32px;
}

.navigation-menu__link {
    text-decoration: none;
    font-family: var(--font-titre);
}

.navigation-menu__link,
.navigation-menu__link:visited,
.navigation-menu__link:active {
    color: white;
}

.navigation-menu__link:hover {
    text-decoration: underline;
    color: var(--fond-bordeaux);
}

header {
    background: rgba(101, 67, 33, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Burger caché en desktop */

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 60px;
  position: relative;
  z-index: 300;
}
 
.burger-sac {
  width: 60px;
  height: auto;
  display: block;
}
 
.burger-sac--ouvert {
  display: none;
}
 
.burger.is-open .burger-sac--ferme {
  display: none;
}
 
.burger.is-open .burger-sac--ouvert {
  display: block;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
}
 
.menu-overlay.active {
  display: block;
}


/* ===== SECTION CONTACT ===== */

.contact {
    background-color: #f0e8e4;
    padding: 80px 0;
}

.contact-titre {
    font-family: var(--font-titre);
    font-size: 40px;
    font-weight: 900;
    color: var(--texte-color);
    margin-bottom: 4px;
}

.contact-sous-titre {
    font-family: var(--font-titre);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-cards);
    margin-bottom: 32px;
}

/* Card formulaire */
.card {
    background-color: #c9b49a;
    padding: 28px;
    margin-bottom: 24px;
}

.card-intro {
    font-family: var(--font-texte);
    font-size: 20px;
    color: var(--texte-color);
    line-height: 1.7;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.form-row .field {
    margin-bottom: 0;
}

.field label {
    font-family: var(--font-texte);
    font-size: 12px;
    font-weight: 600;
    color: var(--texte-color);
}

.field input,
.field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--texte-color);
    padding: 6px 0;
    font-family: var(--font-texte);
    font-size: 12px;
    color: var(--texte-color);
    outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(0,0,0,0.4);
    font-size: 11px;
}

.field textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
}

.checkbox-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--texte-color);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.checkbox-row input[type="checkbox"]:checked {
    background: var(--texte-color);
}

.checkbox-row label {
    font-family: var(--font-texte);
    font-size: 11px;
    color: var(--texte-color);
    line-height: 1.5;
}

.btn-envoyer {
    display: flex;
    justify-content: flex-end;
}

.btn-envoyer button {
    background: var(--btn-color);
    color: white;
    border: none;
    padding: 14px 36px;
    font-family: var(--font-texte);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-envoyer button:hover {
    background: var(--btn-color-hover);
}

/* Colonne droite */
.contact-droite {
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-photo {
    width: 100%;
    max-width: 280px;
    object-fit: cover;
}

.contact-infos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-infos__label {
    font-family: var(--font-texte);
    font-size: 13px;
    font-weight: 700;
    color: var(--texte-color);
}

.contact-infos__valeur {
    font-family: var(--font-texte);
    font-size: 13px;
    color: var(--texte-color);
    margin-bottom: 8px;
}

.contact-infos__lien {
    font-family: var(--font-texte);
    font-size: 13px;
    color: var(--texte-color);
    text-decoration: underline;
}

.contact-newsletter__titre {
    font-family: var(--font-texte);
    font-size: 13px;
    font-weight: 700;
    color: var(--texte-color);
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-newsletter__form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.contact-newsletter__form input {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-texte);
    font-size: 13px;
    color: var(--texte-color);
    flex: 1;
}

.contact-newsletter__form input::placeholder {
    color: rgba(0,0,0,0.4);
}

.contact-newsletter__form button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--texte-color);
}

.contact-newsletter__mentions {
    font-family: var(--font-texte);
    font-size: 10px;
    color: rgba(0,0,0,0.5);
    line-height: 1.5;
    margin-top: 8px;
}

.video {
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}

.video video {
    width: 471px;
    height: 494px;
    object-fit: cover;
}














/* ===== CTA SECTION ===== */

.cta-section {
    position: relative;
    background-color: #f0e8e4;
    overflow: hidden;
    height: 520px;
}

.cta-vague {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.cta-vague svg {
    display: block;
    width: 100%;
    height: 320px;
}

.cta-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
    white-space: nowrap;
}

.cta-texte {
    font-family: var(--font-texte);
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background: #B7A9C0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: black;
    padding: 14px 40px;
    font-family: var(--font-texte);
    font-size: 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: var(--btn-color-hover);
    color: white;
}

.logo-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    position: relative;
}

/* ===== FOOTER ===== */

.footer {
    background-color: var(--fond-bordeaux);
    padding: 48px 64px 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.footer-newsletter {
    max-width: 520px;
}

.footer-newsletter__titre {
    font-family: var(--font-texte);
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.footer-newsletter__form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.footer-newsletter__form input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: var(--font-texte);
    font-size: 20px;
    flex: 1;
}

.footer-newsletter__form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.footer-newsletter__form button {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0 8px;
    transition: opacity 0.2s;
}

.footer-newsletter__form button:hover {
    opacity: 0.7;
}

.footer-newsletter__mentions {
    font-family: var(--font-texte);
    font-size: 11px;
    color: white;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-social p {
    font-family: var(--font-texte);
    font-size: 20px;
    color: white;
}

.footer-social a {
    font-family: var(--font-texte);
    font-size: 20px;
    color: white;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    color: var(--btn-color-hover);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
}

.footer-bottom a,
.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}


@media (max-width: 768px) {
    .col-12, .col-5, .col-7, .col-6, .col-4, .col-3, .col-1 {flex-basis: 100%; max-width: 100%;}
 
  /* ===== NAVIGATION ===== */
 
  .burger {
    display: block;
  }
 
  .navigation-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
 
    position: fixed;
    top: 0;
    right: 0;
    width: 65%;
    height: 100vh;
    background-color: #3B2A24;
    z-index: 200;
    padding: 100px 20px 40px;
 
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
 
  .navigation-menu.active {
    transform: translateX(0);
    display: flex;
  }
 
  .navigation-menu li:not(:last-child) {
    margin-right: 0;
  }
 
  .navigation-menu__link {
    font-size: 20px;
    color: white;
    font-family: var(--font-titre);
  }
 
  /* ===== SECTION CONTACT ===== */
 
  .contact {
    padding: 100px 0 60px; /* 100px pour ne pas être caché sous le header fixe */
  }
 
  /* Les deux colonnes passent en une seule */
  .contact .row {
    flex-direction: column;
  }
 
  .col-6 {
    flex-basis: 100%;
    max-width: 100%;
  }
 
  .contact-titre {
    font-size: 28px;
  }
 
  .contact-sous-titre {
    font-size: 32px;
    margin-bottom: 24px;
  }
 
  .card {
    padding: 20px 16px;
    margin-bottom: 16px;
  }
 
  .card-intro {
    font-size: 15px;
  }
 
  /* Les champs nom/prénom et téléphone/email passent en 1 colonne */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
 
  .btn-envoyer {
    justify-content: stretch;
  }
 
  .btn-envoyer button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
 
  /* Colonne droite */
  .contact-droite {
    padding-left: 0;
    padding-top: 40px;
    gap: 24px;
  }
 
  /* Vidéo */
  .video video {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }
 
  .contact-infos__label {
    font-size: 15px;
  }
 
  .contact-infos__valeur,
  .contact-infos__lien {
    font-size: 15px;
  }
 
  .contact-newsletter__titre {
    font-size: 14px;
  }

  .contact-infos {
    display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 10px;
}

    .contact-newsletter {
        padding-left: 10px;
    }
 
  /* ===== CTA SECTION ===== */
 
  .cta-section {
    height: 155px;
  }
 
  .cta-vague svg {
    height: 110px;
  }
 
  .cta-content {
    bottom: 0;
    white-space: normal;
    width: 90%;
    text-align: center;
  }
 
  .cta-texte {
    font-size: 10px;
    margin-bottom: 14px;
  }
 
  .cta-btn {
    font-size: 15px;
    padding: 12px 28px;
  }
 
  .logo-footer {
    width: 60%;
    margin: 0 auto;
    display: block;
  }

  .field {
  margin-bottom: 24px;
}

.field input,
.field textarea {
  padding: 10px 0;
}

.card {
  padding: 24px 16px;
  gap: 8px;
}
 
  /* ===== FOOTER ===== */
 
  .footer {
    padding: 40px 24px 60px;
  }
 
  .footer-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 32px;
  }
 
  .footer-newsletter {
    max-width: 100%;
  }
 
  .footer-newsletter__titre {
    font-size: 15px;
  }
 
  .footer-newsletter__form input {
    font-size: 16px;
  }
 
  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
 
  .footer-social p,
  .footer-social a {
    font-size: 16px;
  }
 
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
 
  .footer-bottom a,
  .footer-bottom p {
    font-family: var(--font-texte);
    font-size: 12px;
    color: white;
    text-decoration: none;
    opacity: 0.8;
  }
 
  .footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
  }
 
}