/* ================================================================
   main.css — Design : Champagne J. Pierron-Léglise
   Chargé après style.css (fondations + variables)

   Typographies Google Fonts :
     Cormorant Garamond — titres (sérieux, élégant, classique)
     Raleway — corps de texte (lisible, raffiné)
   (Polices chargées via wp_enqueue_style dans functions.php)
================================================================ */


/* ================================================================
   TYPOGRAPHIE GLOBALE
================================================================ */

body {
  font-family: var(--police-texte);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--couleur-texte);
  background-color: var(--couleur-fond);
}

h1, h2, h3, h4 {
  font-family: var(--police-titre);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* Italique pour les sous-titres et accroches */
.hero__subtitle,
.section-desc,
.presentation-content {
  font-style: italic;
  font-family: var(--police-titre);
  font-weight: 300;
  font-size: 1.1rem;
}

/* Labels de section — petites majuscules avec lignes décoratives */
.section-label {
  font-family: var(--police-texte);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--couleur-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: var(--couleur-accent);
  opacity: 0.7;
}


/* ================================================================
   EN-TÊTE DU SITE
================================================================ */

.site-header {
  background-color: var(--couleur-fond);
  border-bottom: 1px solid rgba(196, 163, 90, 0.2);
  box-shadow: none;
  padding-block: 1.2rem;
}

/* Nom du domaine : Cormorant Garamond élégant */
.site-name {
  font-family: var(--police-titre);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--couleur-principale);
  text-transform: uppercase;
}
.site-name:hover { color: var(--couleur-accent); }

/* Navigation : Raleway léger en petites majuscules */
.nav-list a {
  font-family: var(--police-texte);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--couleur-texte);
}
.nav-list a:hover,
.nav-list .current-menu-item > a {
  color: var(--couleur-accent);
  border-bottom-color: var(--couleur-accent);
}

/* Filet doré sous le header quand on scrolle (classe ajoutée par JS) */
.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(28, 43, 29, 0.08);
}


/* ================================================================
   SECTION HÉRO
================================================================ */

/* Fond CSS (sans photo) : vert bouteille avec reflets dorés */
.hero__background--fallback {
  background:
    radial-gradient(ellipse at 25% 75%, rgba(196,163,90,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 22%, rgba(196,163,90,0.08) 0%, transparent 50%),
    linear-gradient(168deg, #243B26 0%, #0E1B0F 55%, #1C2B1D 100%);
}

/* Rangée supérieure : label + badge VI côte à côte */
.hero__top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--espace-md);
  margin-bottom: var(--espace-md);
}

/* Label discret au-dessus du titre */
.hero__label {
  display: block;
  font-family: var(--police-texte);
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--couleur-accent-clair);
  opacity: 0.75;
  padding-top: 2px; /* alignement optique avec le bord du cadran */
}

/* Logo Vignerons Indépendants */
.hero__badge-vi {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
}

.hero__badge-vi__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Fallback texte si logo absent */
.hero__badge-vi__placeholder {
  font-family: var(--police-titre);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--couleur-accent-clair);
  opacity: 0.7;
  text-align: center;
}

.hero__title {
  font-family: var(--police-titre);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--couleur-blanc);
}

/* Filet doré sous le titre */
.hero__title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--couleur-accent);
  margin: var(--espace-md) 0;
}

.hero__subtitle {
  font-family: var(--police-titre);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(247, 243, 236, 0.85);
}

/* Boutons héro */
.btn--primary {
  background-color: var(--couleur-accent);
  border-color: var(--couleur-accent);
  color: var(--couleur-principale);
  font-family: var(--police-texte);
  font-weight: 600;
  letter-spacing: 0.18em;
}
.btn--primary:hover {
  background-color: transparent;
  color: var(--couleur-accent);
  border-color: var(--couleur-accent);
}

.btn--outline-blanc {
  font-family: var(--police-texte);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-blanc:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
  color: var(--couleur-blanc);
}

/* Apparition au chargement */
.hero__content {
  animation: fadeInUp 0.9s ease both;
}


/* ================================================================
   SÉPARATEUR ORNEMENTAL ENTRE SECTIONS
   Utilisé via la classe .ornement dans les templates
================================================================ */

.ornement {
  text-align: center;
  color: var(--couleur-accent);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  opacity: 0.6;
  margin: 0 auto var(--espace-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.ornement::before,
.ornement::after {
  content: '';
  display: block;
  width: 4rem;
  height: 1px;
  background: var(--couleur-accent);
}


/* ================================================================
   SECTION PRÉSENTATION
================================================================ */

.section-presentation {
  background-color: var(--couleur-fond);
  position: relative;
}

/* Filet doré en haut de la section */
.section-presentation::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--couleur-accent);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  font-family: var(--police-titre);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--couleur-principale);
}

/* Ligne décorative sous les titres de section */
.section-header .section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--couleur-accent);
  margin: var(--espace-sm) auto 0;
}

.presentation-text .section-title::after {
  margin: var(--espace-sm) 0 0;
}

.presentation-content {
  font-family: var(--police-titre);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--couleur-texte-clair);
}

/* Teaser vers la page Notre Histoire */
.presentation-footer {
  margin-top: var(--espace-lg);
  border-left: 2px solid var(--couleur-accent);
  padding-left: var(--espace-md);
}

.presentation-citation {
  font-family: var(--police-titre);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--couleur-texte-clair);
  line-height: 1.75;
  margin-bottom: var(--espace-md);
}

.presentation-footer .btn {
  display: inline-block;
}

/* Bouton secondaire */
.btn--secondary {
  background-color: transparent;
  color: var(--couleur-principale);
  border-color: var(--couleur-principale);
  font-family: var(--police-texte);
  font-weight: 500;
  letter-spacing: 0.18em;
}
.btn--secondary:hover {
  background-color: var(--couleur-principale);
  color: var(--couleur-fond);
}

.image-placeholder {
  background-color: var(--couleur-fond-section);
  border: 1px solid rgba(196, 163, 90, 0.3);
  color: var(--couleur-texte-clair);
  font-family: var(--police-titre);
  font-style: italic;
  font-size: 0.95rem;
}


/* ================================================================
   SECTION CUVÉES
================================================================ */

.section-cuvees {
  background-color: var(--couleur-fond-section);
}

/* Carte cuvée redesignée */
.cuvee-card {
  background: var(--couleur-blanc);
  border: 1px solid rgba(196, 163, 90, 0.15);
  border-radius: 0;          /* Angles droits = plus classique */
  box-shadow: 0 1px 8px rgba(28, 43, 29, 0.06);
}
.cuvee-card:hover {
  border-color: rgba(196, 163, 90, 0.5);
  box-shadow: 0 6px 24px rgba(28, 43, 29, 0.1);
  transform: translateY(-3px);
}

.cuvee-card__type {
  font-family: var(--police-texte);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--couleur-accent);
  text-transform: uppercase;
}

.cuvee-card__title {
  font-family: var(--police-titre);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.cuvee-card__excerpt {
  font-family: var(--police-titre);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--couleur-texte-clair);
}

.prix-label {
  font-family: var(--police-texte);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--couleur-texte-clair);
}
.prix-valeur {
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--couleur-principale);
}

/* Bouton outline carte */
.btn--outline {
  font-family: var(--police-texte);
  font-weight: 500;
  letter-spacing: 0.16em;
  border-radius: 0;
  font-size: 0.72rem;
  color: var(--couleur-principale);
  border-color: rgba(28, 43, 29, 0.35);
}
.btn--outline:hover {
  background-color: var(--couleur-principale);
  border-color: var(--couleur-principale);
  color: var(--couleur-fond);
}


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

.section-contact {
  background-color: var(--couleur-principale);
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(196, 163, 90, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(196, 163, 90, 0.06) 0%, transparent 50%);
}

.contact-item h3 {
  font-family: var(--police-texte);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
}

.contact-item p,
.contact-item a {
  font-family: var(--police-titre);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(247, 243, 236, 0.78);
}
.contact-item a:hover { color: var(--couleur-accent-clair); }


/* ================================================================
   PIED DE PAGE
================================================================ */

.site-footer {
  background-color: var(--couleur-principale);
  border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.site-footer h3 {
  font-family: var(--police-titre);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--couleur-accent-clair);
}

.site-footer p,
.site-footer a {
  font-family: var(--police-titre);
  font-style: italic;
  font-weight: 300;
}

.footer-nav-list a {
  font-family: var(--police-texte);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-style: normal;
}

/* ── Bande labels de certification (au-dessus du footer) ─── */
.labels-band {
  background-color: var(--couleur-fond-section);
  border-top: 2px solid rgba(196, 163, 90, 0.45);
  border-bottom: 2px solid rgba(196, 163, 90, 0.45);
  padding-block: 3rem;
}

.labels-band__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.labels-band__titre {
  font-family: var(--police-texte);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--couleur-accent);
  white-space: nowrap;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-inline: 0 1.5rem;
  border-right: 2px solid rgba(196, 163, 90, 0.5);
}

.labels-band__grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.labels-band__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: transform 0.3s ease;
}

.labels-band__item:hover {
  transform: translateY(-2px);
}

/* Image : proportions respectées, pas de recadrage */
.labels-band__img {
  max-height: 90px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(0) contrast(1.05);
  opacity: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.labels-band__item:hover .labels-band__img {
  filter: grayscale(0) contrast(1.1) brightness(1.05);
}

.labels-band__lien {
  display: block;
  line-height: 0;
  border: none;
  text-decoration: none;
}

.labels-band__nom {
  font-family: var(--police-texte);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--couleur-principale);
  opacity: 1;
}


/* ── Bloc prochain événement (section contact) ── */
.event-annonce {
  margin-top: var(--espace-2xl);
  padding-top: var(--espace-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.event-annonce .section-label {
  color: var(--couleur-accent);
  margin-bottom: var(--espace-lg);
  display: inline-flex;
}

.event-annonce__liste {
  display: flex;
  flex-wrap: wrap;
  gap: var(--espace-md);
  margin-top: var(--espace-md);
  margin-bottom: var(--espace-lg);
}

.event-annonce__bloc {
  flex: 1 1 280px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 163, 90, 0.25);
  border-left: 3px solid var(--couleur-accent);
  padding: var(--espace-md) var(--espace-lg);
}

.event-annonce__intro {
  font-family: var(--police-titre);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(247, 243, 236, 0.85);
  margin-bottom: var(--espace-sm);
}

.event-annonce__lieu {
  font-family: var(--police-texte);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--couleur-accent-clair);
  margin-bottom: var(--espace-xs);
}

.event-annonce__date {
  font-family: var(--police-texte);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: rgba(247, 243, 236, 0.75);
  margin-bottom: var(--espace-md);
}

.event-annonce__cloture {
  font-family: var(--police-titre);
  font-style: italic;
  font-weight: 300;
  font-size: 0.92rem;
  color: rgba(247, 243, 236, 0.6);
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  padding-top: var(--espace-sm);
  margin-bottom: 0;
}


.footer-bottom p {
  font-family: var(--police-texte);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-style: normal;
  color: rgba(247, 243, 236, 0.4);
}

.footer-bottom__legal {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(247, 243, 236, 0.55);
  margin-bottom: 0.4rem;
}

.footer-bottom__copy {
  font-size: 0.65rem;
}


/* ================================================================
   PAGE DÉTAIL CUVÉE
================================================================ */

.cuvee-single__hero {
  background-color: var(--couleur-fond-section);
  border-bottom: 1px solid rgba(196, 163, 90, 0.2);
}

.cuvee-single__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--espace-lg);
  flex-wrap: wrap;
}

.cuvee-single__retour {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--police-texte);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--couleur-accent);
  border-bottom: 1px solid rgba(196, 163, 90, 0.45);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.cuvee-single__retour:hover {
  color: var(--couleur-principale);
  border-bottom-color: var(--couleur-principale);
}

.cuvee-single__title {
  font-family: var(--police-titre);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
}

.cuvee-single__type {
  font-family: var(--police-texte);
  font-weight: 500;
  letter-spacing: 0.22em;
}

.cuvee-single__description {
  font-family: var(--police-titre);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.85;
}

.cuvee-single__details h2,
.cuvee-single__tarifs h2 {
  font-family: var(--police-texte);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--couleur-texte-clair);
}

.detail-item dt {
  font-family: var(--police-texte);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--couleur-texte-clair);
}
.detail-item dd {
  font-family: var(--police-titre);
  font-size: 1rem;
  color: var(--couleur-texte);
}

.tarif span {
  font-family: var(--police-titre);
  font-style: italic;
  color: var(--couleur-texte-clair);
}
.tarif strong {
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--couleur-principale);
}

.cuvee-single__image img {
  border: none;
}


/* ================================================================
   PAGE LISTE CUVÉES (archive)
================================================================ */

.archive-hero {
  background-color: var(--couleur-principale);
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(196, 163, 90, 0.1) 0%, transparent 55%);
}

.archive-hero .page-title {
  font-family: var(--police-titre);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--couleur-blanc);
}

.archive-hero p {
  font-family: var(--police-titre);
  font-style: italic;
  color: rgba(247, 243, 236, 0.75);
}


/* ================================================================
   PAGES STANDARD
================================================================ */

.page-hero {
  background-color: var(--couleur-fond-section);
  border-bottom: 1px solid rgba(196, 163, 90, 0.18);
}

.page-title {
  font-family: var(--police-titre);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.entry-content h2 {
  font-family: var(--police-titre);
  font-weight: 400;
}

.entry-content p {
  font-family: var(--police-titre);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
}


/* ================================================================
   ANIMATIONS SUBTILES
================================================================ */


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Transition douce sur les cartes */
.cuvee-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.7s ease;
}

.cuvee-card:hover {
  transition-delay: 0s;
}

/* ── Reveal au scroll ──
   .reveal              : fondu (opacity) — sûr pour tous les éléments
   .reveal--up          : + glissement depuis le bas
   .reveal--right       : + glissement depuis la droite
   .reveal--left        : + glissement depuis la gauche
   .is-visible          : ajouté par IntersectionObserver (main.js)
*/
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal--up    { transform: translateY(22px); }
.reveal--right { transform: translateX(22px); }
.reveal--left  { transform: translateX(-22px); }

.reveal.is-visible           { opacity: 1; }
.reveal--up.is-visible,
.reveal--right.is-visible,
.reveal--left.is-visible     { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--up,
  .reveal--right,
  .reveal--left { opacity: 1; transform: none; transition: none; }
}

/* ================================================================
   MOBILE — surcharge prioritaire (main.css > style.css)
================================================================ */

@media (max-width: 900px) {

  /* ── Présentation : texte AU-DESSUS, image EN DESSOUS ── */
  .presentation-layout {
    display: flex;
    flex-direction: column;
  }

  .presentation-text {
    padding: 3rem 1.5rem;
    order: 1;
  }

  .presentation-image {
    order: 2;
    min-height: 260px;
    width: 100%;
  }

  .presentation-image__img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
  }

  /* ── Vignoble : empilement texte / carte ── */
  .section-vignoble {
    background-color: #1C2B1D;
    color: #fff;
    padding-block: 3rem;
  }

  .vignoble-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-inline: 1.5rem;
  }

  .vignoble-texte {
    text-align: center;
    color: #fff;
  }

  .vignoble-texte .section-label,
  .vignoble-texte .section-title,
  .vignoble-texte p,
  .vignoble-texte li {
    color: #fff;
  }

  .vignoble-filet {
    margin-inline: auto;
  }

  .vignoble-villages-list {
    align-items: center;
  }

  .vignoble-vues {
    justify-content: center;
  }

  .vignoble-carte {
    width: 100%;
  }

  #vignoble-home-map {
    height: 300px;
    width: 100%;
    display: block;
  }

  /* ── Labels "Tellement Nature" ── */
  .section-labels {
    background-color: #fff;
    padding-block: 3rem;
  }

  .labels-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-inline: 1.5rem;
    max-width: 100%;
  }

  .labels-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
  }

  .labels-titre {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    font-weight: 700;
    margin: 0;
    line-height: 1;
  }

  .labels-titre__tellement {
    display: block;
    color: #1C2B1D;
  }

  .labels-titre__nature {
    display: inline-block;
    color: #fff;
    background-color: #1C2B1D;
    border: 3px solid #1C2B1D;
    padding: 0.05em 0.35em;
    border-radius: 3px;
    line-height: 1.2;
  }

  .labels-points {
    color: #fff;
  }

  .labels-accroche {
    max-width: 100%;
    color: #5A5646;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .labels-logos {
    justify-content: center;
    gap: 2rem;
  }

  .labels-logo {
    height: 56px;
    opacity: 0.85;
  }

  .labels-photo {
    width: min(280px, 85vw);
    height: min(280px, 85vw);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(28,43,29,0.18);
    flex-shrink: 0;
  }

  .labels-photo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}


/* Liens du corps de texte */
.entry-content a {
  color: var(--couleur-principale);
  border-bottom: 1px solid var(--couleur-accent);
  padding-bottom: 1px;
}
.entry-content a:hover {
  color: var(--couleur-accent);
  border-bottom-color: var(--couleur-accent);
}
