/* ==============================
   FONT-FACES
============================== */

@font-face {
  font-family: 'Belleza';
  src: url('../font/Belleza-Regular.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../font/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../font/OpenSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../font/OpenSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   PALETTE DE COULEURS - PERLES DE BIEN-ÊTRE
   ======================================== */

:root {
  --admin-sidebar-w: 280px;
  --admin-navbar-h: 56px;
  --color-white: #ffffff;
  /* Titres, button-primary, border button outline*/
  --color-dark-green: #5F7B56;
  /* hover */
  --color-green-600: #4a5f42;
  /* Couleur texte sur fond clair (WCAG AA ≥4.5:1 sur #E7EFE9, #fcf8f0, #fff) */
  --color-text-on-soft: #3d5037;

  /* Indications texte, texte btn outline, texte card-icon, text-div-mint*/
  --color-very-dark-green: #0F2A1F;

  /* texte-body*/
  --color-dark-blue-grey: #25323B;

  /* fond body */
  --color-cream-50: #fcf8f0;

  /* fond div mint-light */
  --color-light-green-grey: #E7EFE9;

  --bg-linear-gradient: linear-gradient(135deg, var(--color-cream-50) 30%, var(--color-green-300) 100%);
}



/* ========================================
   RESET & TYPOGRAPHIE
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  background-color: var(--color-cream-50);
  color: var(--color-dark-blue-gray);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark-green);
  font-family: 'Belleza', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  /* env. 32px */
  /* line-height: 1.25; */
}

h2 {
  font-size: 1.5rem;
  /* env. 24px */
  /* line-height: 1.3; */
}

h3 {
  font-size: 1.25rem;
  text-align: left;
  /* env. 20px */
  /* line-height: 1.4; */
}

h4 {
  font-size: 1.125rem;
  /* env. 18px */
  /* line-height: 1.4; */
}

p {
  font-size: 1rem;
  /* env. 16px */
  line-height: 1.6;
  /* bon confort de lecture */
  margin-bottom: 1rem;
  color: var(--color-gray-600);
  text-align: left;
}

span.highlight,
strong span,
span.medium,
p.medium {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}

/* Texte en italique */
em,
i {
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
}

a {
  color: var(--color-dark-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: none !important;
}

li {
  list-style: none;
}

a:hover {
  color: var(--color-green-600);
  text-decoration: underline;
}

/* ========================================
   UTILITIES
   ======================================== */

.bg-primary {
  background-color: var(--color-dark-green) !important;
}

.bg-light-sage {
  background-color: var(--color-gray-100) !important;
  ;
}

.bg-light-cream {
  background-color: var(--color-cream-50)
}

.bg-gradient {
  background: var(--bg-linear-gradient);
}

.text-muted {
  color: var(--color-gray-400) !important;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-light-green-grey), transparent);
  margin: 2rem 0;
}

.card-background-default {
  margin: 15px 0;
  padding: 20px;
  background-color: var(--color-white);
}

.font-div-mint {
  background-color: var(--color-light-green-grey);
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  color: var(--color-very-dark-green);
  padding: 15px 10px;
  margin: 15px 0;
}

/* ========================================
   BOOTSTRAP CUSTOMIZATION
   ======================================== */
.cursor-grab { cursor: grab; user-select: none; }
.cursor-grab:active { cursor: grabbing; }

   .nav-pills .nav-link.active, .nav-pills .show>.nav-link, .admin-navbar{
    background-color: var(--color-light-green-grey) !important;
   }

.btn-primary {
  background-color: var(--color-dark-green);
  border-color: var(--color-dark-green);
  ;
  color: var(--color-white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-green-600);
  border-color: var(--color-green-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(95, 123, 86, 0.3);
}

.btn-outline-primary {
  color: var(--color-very-dark-green);
  border-color: var(--color-very-dark-green);
  padding: 0.75rem 1.5rem;
}

.btn-outline-primary:hover {
  background-color: var(--color-light-green-grey);
  border-color: var(--color-light-green-grey);
  color: var(--color-very-dark-green);
}

.cta-art_block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* espace vertical entre CTA */
  margin-top: 1rem;
}
.blocks-cta-footer_art{
  display: flex;
  flex-direction: column;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  background-color: var(--color-light-green-grey);
  border-color: var(--color-very-dark-green);
  color: var(--color-white);
}

/* ========================================
   NAVIGATION
   ======================================== */

.admin-navbar {
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Sur petit écran, le titre admin doit pouvoir wrap pour ne pas déborder */
.admin-navbar .navbar-brand {
  white-space: normal;
  line-height: 1.2;
  max-width: calc(100% - 60px); /* laisse la place au burger button */
}

@media (max-width: 575.98px) {
  .admin-navbar .navbar-brand {
    font-size: 0.95rem;
  }
}

.admin-content {
  min-height: calc(100vh - var(--admin-navbar-h));
  overflow-x: hidden;
}

/* Mobile-first : le wrapper est en bloc, la sidebar est offcanvas */
.admin-wrapper {
  display: block;
}

/* Empêcher le contenu admin de déborder du grid et du body */
.admin-wrapper > main {
  min-width: 0;
  overflow-x: auto;
}

.admin-sidebar {
  background: var(--bs-tertiary-bg);
}

.sidebar-header {
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bs-secondary-color);
}

.nav-link.active {
  font-weight: 600;
}

.navbar {
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

/* Header fixe au scroll (sticky sur le <header> parent direct du flux) */
header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: var(--color-white);
}
.site-header { background-color: var(--color-white); }

#navbarNav {
  justify-content: end;
  align-items: center;
}


.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark-green) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand figure {
  width: 250px;
  height: 50px;
  margin: 0;
}

.navbar-brand figure>img {
  object-fit: contain;
}

.nav-link {
  color: var(--color-gray-600) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-dark-green) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-dark-green);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.hero {
  /* background: linear-gradient(135deg, var(--color-cream-50) 30%, var(--color-green-300) 100%); */
  background: var(--bg-linear-gradient);
  /* padding: 3rem 0; */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(163, 224, 205, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero>div.container div.row {
  flex-direction: column-reverse;
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(95, 123, 86, 0.15);
}

/* ========================================
   CARDS & SERVICES
   ======================================== */

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  background-color: var(--color-white);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(95, 123, 86, 0.15);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  /* object-position: top; */
}

/* Alignement horizontal des contenus de cards (titres + textes + CTAs sur meme niveau) */
.card .card-body {
  display: flex;
  flex-direction: column;
}
.card .card-title {
  min-height: 3.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.card .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  min-height: 4.5rem;
}
/* Tous les groupes de boutons en bas de card poussent vers le bas */
.card .card-body .btn,
.card .card-body .d-grid,
.card .card-body .mt-auto {
  margin-top: auto;
}
/* CTAs courts mais avec wrap autorise au cas ou (variants max 5 mots) */
.card .card-body .btn {
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.3;
}

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

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--color-dark-green);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* .card-text {
  color: var(--color-gray-600);
  font-size: 0.95rem;
} */

.card-price {
  color: var(--color-dark-green);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ========================================
   SECTIONS
   ======================================== */

section {
  padding: 2rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-light-green-grey);
  border-radius: 2px;
}

/* Force le centrage des paragraphes/lead dans une section-title (override le p { text-align:left } global) */
.section-title p,
.section-title .lead {
  text-align: center;
}

/* WCAG AA : ameliore le contraste de #5F7B56 → #3d5037 sur fonds clairs (atteint ratio 4.5:1) */
.faq-accordion-block .accordion-button:not(.collapsed),
.faq-home-accordion .accordion-button:not(.collapsed),
.reviews-cta p,
.faq-accordion-block .accordion-button,
.faq-home-accordion .accordion-button {
  color: var(--color-text-on-soft, #3d5037);
}
/* Lien dans newsletter form-check label (sur fond vert clair) */
.newsletter-section .form-check-label,
.newsletter-section .form-check-label a {
  color: var(--color-text-on-soft, #3d5037) !important;
}
/* Texte sur fond vert sombre du footer : texte clair (contraste WCAG sur #5F7B56) */
.footer-section .small,
.footer-section .footer-slogan {
  color: #f5f1e8 !important;
}

.section-subtitle {
  color: var(--color-gray-600);
  font-size: 1.1rem;
  text-align: center;
  margin-top: 1rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-light-green-grey);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-light-green-grey);
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-dark-green);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-gray-400);
}

.star-rating {
  color: #ffd700;
  /* Gold color for stars */
}

.carousel-indicators>button {
  background-color: #5f7b56;
}

/* Custom styles for carousel previous/next buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 16 16\' fill=\'%235f7b56\'%3e%3cpath d=\'M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z\'%3e%3c/path%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 16 16\' fill=\'%235f7b56\'%3e%3cpath d=\'M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z\'%3e%3c/path%3e%3c/svg%3e");
}


/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter-section {
  background-color: var(--color-light-green-grey);
  /* Light background for contrast */
  padding: 60px 0;
}

.newsletter-title {
  color: #5f7b56;
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.2rem;
  margin-bottom: 30px;
}


.form-check {
  font-size: 0.9rem;
  color: #6c757d;
}

.form-check-label a {
  color: #5f7b56;
}


.newsletter-section .icon-enveloppe,
.newsletter-section .icon-flacon {
  display: none;
}

/* Adjust form positioning to make space for icons */
.newsletter-section form {
  margin-left: 40px;
  /* Space for left icon */
  margin-right: 40px;
  /* Space for right icon */
}

/* ========================================
   FORMS
   ======================================== */

.form-control,
.form-select {
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-dark-green);
  box-shadow: 0 0 0 0.2rem rgba(95, 123, 86, 0.1);
}

.form-label {
  color: var(--color-gray-800);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* ========================================
   ABOUT
   ======================================== */
.about-us-image {
  max-width: 100%;
}

.about-image-dpl {
  max-width: 100%;
  height: 360px;
}

.about-right-sec {
  padding: 0 20px;
}

.about-us-image>img {
  width: 100%;
  height: 100%;
}

.about-first-section {
  background-color: var(--color-white);
  padding: 20px;

}

.pbe-cta-about {
  padding: 1rem 0;
}

.pbe-cta-about .btn {
  min-width: 220px;
  /* évite qu’un bouton soit plus court que l’autre */
}

.pbe-parenthese .pbe-photo img {
  display: block;
}

.pbe-values .pbe-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  line-height: 1;
}

.pbe-values .pbe-icon svg,
.pbe-values .pbe-icon img {
  display: block;
  max-width: 24px;
  max-height: 24px;
}

#section-about-img {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

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

.footer-section {
  background-color: var(--color-dark-green, #5F7B56);
  color: #e8efe8;
  padding-bottom: 1rem;
}

.footer-section .footer-logo {
  width: auto;
  max-width: 220px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-section .footer-slogan {
  font-style: italic;
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0;
}

.footer-section .footer-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

.footer-section .footer-nav li { margin-bottom: 0.5rem; }

.footer-section .footer-link {
  color: #e8efe8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-section .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-section address {
  font-style: normal;
  margin: 0;
}
.footer-section address p { margin-bottom: 0.5rem; }
.footer-section address i { color: #ffffff; }

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}
.footer-social-icon:hover {
  background: #ffffff;
  color: var(--color-dark-green, #5F7B56);
  transform: translateY(-2px);
}

.footer-section .btn-light {
  background-color: #ffffff;
  color: var(--color-dark-green, #5F7B56);
  border-color: #ffffff;
  font-weight: 600;
}
.footer-section .btn-light:hover {
  background-color: #f5f1e8;
  border-color: #f5f1e8;
  color: var(--color-dark-green, #5F7B56);
}
.footer-section .btn-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}
.footer-section .btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--color-dark-green, #5F7B56);
  border-color: #ffffff;
}

.footer-bottom-bar {
  color: #d4dcd4;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #5f7b56;
}

.btn-light {
  background-color: #ffffff;
  color: #5f7b56;
  border-color: #ffffff;
}

.btn-light:hover {
  background-color: #e0e0e0;
  color: #5f7b56;
}

.mini-contact-form .form-control-sm {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.mini-contact-form .form-control-sm::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.mini-contact-form .form-control-sm:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}

.mini-contact-form .btn-light {
  background-color: #fff;
  color: #5f7b56;
  border: none;
}

.mini-contact-form .btn-light:hover {
  background-color: #e2e6ea;
  color: #5f7b56;
}

/* ========================================
   MODAL CUSTOMIZATION
   ======================================== */

.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background-color: var(--color-dark-green);
  color: var(--color-white);
  border: none;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-title {
  font-weight: 600;
}


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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-light-green-grey);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-dark-green);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991.98px) {
  .admin-wrapper {
    display: block;
  }
}

@media (min-width: 992px) {
  .admin-wrapper {
    display: grid;
    grid-template-columns: var(--admin-sidebar-w) 1fr;
    gap: 1rem;
    align-items: start;
  }

  .cta-art_block {
    flex-direction: row;
    justify-content: center; /* centrage horizontal */
    gap: 1rem;               /* espace horizontal entre CTA */
  }

  /* Important : en ≥ lg, l'offcanvas devient statique (pas hors écran) */
  .offcanvas-lg {
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    border: 0 !important;
    width: var(--admin-sidebar-w) !important;
    max-width: none !important;
    box-shadow: none !important;
    z-index: auto !important;
  }

  /* éviter le backdrop en desktop */
  .offcanvas-backdrop {
    display: none !important;
  }

  .hero>div.container div.row {
    flex-direction: row;
  }

  .pbe-cta-about {
    margin-top: 0.5rem;
  }

  .pbe-cta-about .btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }

  .pbe-parenthese .pbe-photo {
    aspect-ratio: 6 / 8;
  }

  .pbe-values .card-body {
    padding: 1.25rem 1.25rem;
  }

  .pbe-parenthese .pbe-photo img {
    object-fit: cover;
  }

  h1,
  h2 {
    text-align: center;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
    /* 48px */
    line-height: 1.2;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 2.25rem;
    /* 36px */
    line-height: 1.3;
  }

  h3 {
    font-size: 1.75rem;
    /* 28px */
  }

  h4 {
    font-size: 1.5rem;
    /* 24px */
  }

  p {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.7;
  }

  .newsletter-section .icon-enveloppe {
    display: block;
    width: 60px;
    height: 60px;
    opacity: 0.8;
    left: -40px;
    /* Adjust for overlap */
    top: -15px;
    /* Vertically align with input */
    transform: translateY(-50%) rotate(-15deg);
    /* Tilt */
    z-index: 1;
  }

  .newsletter-section .icon-flacon {
    display: block;
    width: 70px;
    height: 70px;
    opacity: 0.8;
    right: -40px;
    /* Adjust for overlap */
    top: 0%;
    /* Vertically align with input */
    transform: translateY(-50%) rotate(15deg);
    /* Tilt */
    z-index: 1;
  }

  .newsletter-section .icon-tasse-the {
    left: -40px;
    width: 40px;
    height: 40px;
  }

  .about-us-image {
    max-width: 40%;
    height: 500px;
  }

  .about-image-dpl {
    max-width: 40%;
    height: 360px;
  }


  .about-right-sec {
    justify-content: center;
  }

  .newsletter-section form {
    margin-left: 0;
    margin-right: 0;
  }

  /* plein pot sur mobile */
}

@media (min-width: 576px) {
  .card-img-top {
    height: 350px;
  }
}

/* ========================================
   AUTH PAGES (login / forgot / reset)
   ======================================== */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-cream-50, #fcf8f0) 0%, var(--color-light-green-grey, #E7EFE9) 100%);
  padding: 2rem 1rem;
}
.auth-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(95, 123, 86, 0.12);
  padding: 2.5rem 2rem;
}
.auth-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}
.auth-title {
  text-align: center;
  color: var(--color-dark-green, #5F7B56);
  font-family: 'Belleza', sans-serif;
  margin-bottom: 0.25rem;
}
.auth-subtitle {
  text-align: center;
  color: var(--color-gray-400, #6c757d);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.auth-card .form-control:focus {
  border-color: var(--color-dark-green, #5F7B56);
  box-shadow: 0 0 0 0.2rem rgba(95, 123, 86, 0.15);
}
.btn-auth {
  background-color: var(--color-dark-green, #5F7B56);
  border-color: var(--color-dark-green, #5F7B56);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.btn-auth:hover {
  background-color: var(--color-green-600, #4a5f42);
  border-color: var(--color-green-600, #4a5f42);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(95, 123, 86, 0.25);
}
.auth-footer-links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
.auth-footer-links a {
  color: var(--color-dark-green, #5F7B56);
  text-decoration: none;
}
.auth-footer-links a:hover {
  text-decoration: underline;
}
.auth-meta {
  margin-top: 2rem;
  color: var(--color-dark-blue-grey, #25323B);
  font-size: 0.875rem;
}
.auth-password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-gray-400, #6c757d);
  cursor: pointer;
  padding: 0.25rem;
}
.auth-password-toggle:hover {
  color: var(--color-dark-green, #5F7B56);
}

/* ========================================
   ACCESSIBILITE — Focus visible (clavier)
   ======================================== */
*:focus-visible {
  outline: 3px solid var(--color-dark-green, #5f7b56);
  outline-offset: 2px;
  border-radius: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-dark-green, #5f7b56);
  outline-offset: 2px;
}