: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;
    font-size: 32px;
    cursor: pointer;
}

.burger-dev {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    margin: 5px 0;
}


/* ===== HERO ===== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('img/fond-hero.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    background-color: #f0e8e4;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 64px 370px;
    color: var(--btn-color);
}

.hero-surtitre {
    font-size: 96px;
    font-family: var(--font-titre);
    font-weight: 800;
    margin-bottom: 8px;
    opacity: 0.9;
}

.hero-titre {
    font-family: var(--font-titre);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1;
    margin-bottom: 12px;
}

.hero-sous-titre {
    font-family: var(--font-sous-titre);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 32px;
}

.hero-accroche {
    font-family: var(--font-sous-titre);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 28px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background: var(--btn-color);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}

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


/* ===== la marque section ===== */

.la-marque {
    background-color: #f0e8e4;
    height: 1100vh;
    background-color: #f0e8e4;
    padding-top: 80px;
}

/* ===== SECTION MARQUE ===== */


.marque-titre {
    font-family: var(--font-titre);
    font-size: var(--title-H2);
    font-weight: 400;
    color: var(--texte-color);
    padding: 0 64px;
    margin-bottom: 60px;
}

.marque-titre strong {
    font-weight: 900;
}

.marque-sticky {
    position: sticky;
    top: 80px; 
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 48px;
    padding: 0 64px;
}

.marque-left {
    flex-shrink: 0;
    width: 260px;
}

.marque-accroche {
    font-family: var(--font-sous-titre);
    font-size: 32px;
    line-height: 1.6;
    color: var(--texte-color);
}

.marque-track-wrapper {
    overflow: visible;
    flex: 1;
}

.marque-track {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    gap: 48px;
    padding: 0 64px;
}

.marque-card {
    position: relative;
    width: 450px;
    height: 666px;
    flex-shrink: 0;
    overflow: hidden;
}

.marque-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marque-card-content {
    position: relative;
    z-index: 1;
    background: var(--color-cards);
    height: 100%;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.marque-card-titre {
    font-family: var(--font-sous-titre);
    font-size: 32px;
    color: white;
    text-align: center;
}

.marque-card-texte {
    font-family: var(--font-texte);
    font-size: 20px;
    font-weight: 300;
    color: white;
    line-height: 1.8;
}

.marque-card {
    width: 450px;
    height: 666px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.marque-card-top {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.marque-card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.marque-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 32px;
    gap: 8px;
}

.marque-card-nom {
    font-family: var(--font-sous-titre);
    font-size: 32px;
    color: white;
}

.marque-card-specialite-titre {
    font-family: var(--font-texte);
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-top: 12px;
}

.marque-card-specialite {
    font-family: var(--font-sous-titre);
    font-size: 24px;
    color: white;
}

.marque-card-bottom {
    
    padding: 28px 24px;
    background-color: white;
}

.marque-card-citation {
    font-family: var(--font-texte);
    font-size: 20px;
    font-weight: 400;
    color: var(--texte-color);
    line-height: 1.7;
    display: flex;
    text-align: center;
}

.marque-card-italic {
    font-family: var(--font-titre);
    font-size: 20px;
    font-style: normal;
    line-height: 1.6;
}

.marque-card-bottom-text {
    margin-top: auto;
}

.marque-card--white {
    background: #f0e8e4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.marque-card-top {
    flex: 1;
}

.marque-card-top img {
    object-position: center 20%;
}

.marque-card-bottom {
    margin-top: auto;
}

.marque-card-titre-italic {
    font-family: var(--font-sous-titre);
    font-size: 20px;
    color: white;
    line-height: 1.6;
    margin-bottom: 24px;
}

.marque-card-lien {
    display: inline-block;
    font-family: var(--font-texte);
    font-size: 13px;
    color: white;
    text-decoration: underline;
    margin-top: 16px;
}

.marque-card-lien:hover {
    display: inline-block;
    font-family: var(--font-texte);
    font-size: 13px;
    color: var(--fond-bordeaux);
    text-decoration: underline;
    margin-top: 16px;
}

.marque-card-img-bottom {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: auto;
}

.marque-card-illustration {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin: 20px 0;
}

.marque-card-texte--dark {
    color: var(--texte-color);
}


.marque-card--split {
    background: #f0e8e4;
    display: flex;
    flex-direction: column;
}

.marque-card-split-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 0;
}

.marque-card-split-img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    margin-top: 16px;
}

.marque-card-split-bottom {
    background: white;
    padding: 24px 28px;
    color: var(--texte-color);
    z-index: 2;
}

.marque-card-equipe-top {
    font-family: var(--font-texte);
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-align: center;
}

.marque-card-equipe-bottom {
    font-family: var(--font-texte);
    font-size: 22px;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-top: auto;
}

.marque-card-equipe-bottom strong {
    font-weight: 800;
}

.marque-card-texte-illustration {
    color: var(--texte-color);
    z-index: 2;
}



/* ===== GALERIE ===== */

.galerie {
    padding-bottom: 150px;
    background-color: #f0e8e4;
}

.galerie-container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.galerie-row {
    gap: 0;
    margin-bottom: 0;
}

.galerie-col {
    padding: 0;
    display: flex;
    flex-direction: column;
}

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

/* Rangée 1 */
.galerie-row:nth-child(1) img {
    height: 355px;
}

/* Rangée 2 */
.galerie-row:nth-child(2) .col-6:first-child img {
    height: 1006px;
}
.galerie-row:nth-child(2) .col-6:last-child img {
    height: 563px;
}

/* Rangée 3 */
.galerie-row:nth-child(3) img {
    height: 533px;
}

/* Rangée 4 */
.galerie-row:nth-child(4) .col-6:first-child img {
    height: 140px;
}
.galerie-row:nth-child(4) .col-6:last-child img {
    height: 280px;
}

/* Rangée 5 */
.galerie-row:nth-child(5) img {
    height: 200px;
}



/* ===== 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;
}



/* ============================================================
   RESPONSIVE LA MAROQUINERIE — à coller à la FIN de la_maroquinerie.css
   ============================================================ */

/* ===== BURGER SAC (toutes tailles) ===== */

.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;
}

/* Voile sombre derrière le menu */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
}

.menu-overlay.active {
  display: block;
}


@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);
  }

  /* ===== HERO ===== */

  .hero {
    height: auto;
    min-height: 82svh;
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: 100% center;
  }

  .hero-content {
    padding: 80px 24px 380px;
  }

  .hero-surtitre {
    font-size: 36px;
    margin-bottom: 6px;
  }

  .hero-titre {
    font-size: 22px;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }

  .hero-sous-titre {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  /* ===== SECTION LA MARQUE ===== */

  /* On désactive l'effet scroll horizontal et la hauteur fixe */
  .la-marque {
    height: auto;
    padding-top: 10px;
    padding-bottom: 60px;
  }

  .marque-titre {
    font-size: 36px;
    padding: 0 24px;
    margin-bottom: 32px;
  }

  /* On désactive le sticky du wrapper */
  .marque-sticky {
    position: relative;
    top: auto;
    height: auto;
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
    display: flex;
    overflow: hidden;
  }

  .marque-left {
    width: 100%;
  }

  .marque-accroche {
    font-size: 22px;
    margin-bottom: 24px;
  }

  /* Le track devient un slider tactile horizontal */
  .marque-track-wrapper {
    overflow: visible;
    width: 100%;
    padding: 0;
  box-sizing: border-box;
  }

  .marque-track {
    position: relative;
    top: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .marque-track::-webkit-scrollbar {
    display: none;
  }

  .marque-track:active {
    cursor: grabbing;
  }

  /* Chaque carte prend 85% de la largeur pour qu'on voit qu'il y en a d'autres */
  .marque-card {
    flex-shrink: 0;
    width: 85vw;
    height: 500px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
  }

  .marque-card-top {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  .marque-card-top img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover;
    display: block;
  }

  .marque-card-bottom {
    flex-shrink: 0;
    padding: 20px 16px;
    background: white;
}

    .marque-card-overlay {
        position: absolute;
        inset: 0;
}

  .marque-card-content {
    padding: 24px 20px;
    gap: 16px;
  }

  .marque-card-titre {
    font-size: 24px;
  }

  .marque-card-texte {
    font-size: 15px;
  }

  .marque-card-top img {
    height: 220px;
  }

  .marque-card-bottom {
    padding: 20px 16px;
  }

  .marque-card-citation {
    font-size: 14px;
  }

  .marque-card-nom {
    font-size: 24px;
  }

  .marque-card-specialite {
    font-size: 18px;
  }

  .marque-card-split-top {
    padding: 20px 20px 0;
  }

  .marque-card-split-bottom {
    padding: 16px 20px;
  }

  /* ===== GALERIE ===== */

  /* Toutes les images en colonne pleine largeur */
  .galerie {
    padding-bottom: 60px;
  }

  .galerie .row {
    flex-direction: column;
  }

  .galerie .col-6,
  .galerie .col-3 {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }

  /* On réinitialise toutes les hauteurs fixes */
  .galerie-row:nth-child(1) img,
  .galerie-row:nth-child(2) .col-6:first-child img,
  .galerie-row:nth-child(2) .col-6:last-child img,
  .galerie-row:nth-child(3) img,
  .galerie-row:nth-child(4) .col-6:first-child img,
  .galerie-row:nth-child(4) .col-6:last-child img,
  .galerie-row:nth-child(5) img {
    height: 260px;
  }

  .galerie-col img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    display: block;
    padding-bottom: 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;
  }

  /* ===== 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;
  }

}

