:root {
  --primary: #c5a47e; /* Or Homi */
  --black: #111111;
  --white: #ffffff;
  --grey-bg: #f8f8f8;
  --transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}
/* Header Adaptatif */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
/* État au Scroll */
header.scrolled {
  background-color: var(--white);
  color: var(--primary);
  border-bottom: 1px solid #e0e0e0;
}
/* Pas de changement de fond au hover (Ta demande) */
header:hover {
  background-color: transparent;
}
header.scrolled:hover {
  background-color: var(--white);
}
.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Logo & Icon */
.logo {
  display: flex;
  align-items: center;
  gap: 0px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  color: gray;
}
.logo img {
  width: 170px; /* Garde les proportions */
  height: 170px; /* Taille adaptée pour ne pas déborder du header de 80px */
  margin-left: -90px; /* "Aspire" le texte vers l'icône pour un look soudé */
  object-fit: contain;
}
/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  color: white;
}
nav ul li a {
  text-decoration: none;
  color: gray;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  padding-bottom: 31px; /* Alignement sur la ligne du header */
}
/* Barre Active Précise */
nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}
/* Icons Section */
.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  color: gray;
}
.cart-icon {
  position: relative;
  color: gray;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #ff4757; /* Rouge Jotech */
  color: white;
  font-size: 11px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex; /* Important pour centrer le chiffre */
  align-items: center;
  justify-content: center;
}

/*================================================
  1. SECTION À PROPOS (LAYOUT)
================================================*/
.a-propos-section {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 120px 8% !important; /* Espacement large style Homi */
  max-width: 1400px;
  margin: 0 auto;
}
.a-propos-text {
  flex: 1.2;
}
.a-propos-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

/*================================================
  2. TYPOGRAPHIE ET ÉLÉMENTS
================================================*/
.a-propos-text .badge {
  background: var(--primary);
  color: white;
  padding: 6px 15px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
}
.a-propos-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 30px;
}
.a-propos-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}
/* Le bouton spécifique à cette page */
.btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  border: 1px solid#c5a47e;
}
.btn-primary:hover {
  background: #c5a47e;
  color: var(--white);
  transform: translateY(-5px);
}
/*================================================
  3. L'IMAGE AVEC CADRE DÉCALÉ (SIGNATURE HOMI)
================================================*/
.a-propos-image img {
  width: 100%;
  z-index: 2;
  position: relative;
  transition: transform 0.5s ease;
}
/* Le carré gris derrière l'image */
.a-propos-image::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f3f3f3; /* Gris très clair */
  top: 30px;
  left: 30px;
  z-index: 1;
  transition: 0.5s ease;
}
.a-propos-image:hover img {
  transform: translate(-10px, -10px);
}
.a-propos-image:hover::after {
  transform: translate(10px, 10px);
  background: var(--primary); /* Devient doré au survol */
  opacity: 0.3;
}
/*================================================
  4. RESPONSIVE
================================================*/
@media (max-width: 992px) {
  .a-propos-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 8% !important;
    gap: 60px;
  }
  .a-propos-text h2 {
    font-size: 2.5rem;
  }
  .a-propos-image {
    width: 80%;
  }
}
/*homi-video-banner*/
.homi-video-banner {
  position: relative;
  width: 100%;
  height: 500px; /* Ajuste selon tes besoins */
  overflow: hidden;
  background-color: #000;
}
.homi-video-banner .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Effet sombre pour faire ressortir le bouton */
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.play-button i {
  color: #333;
  font-size: 24px;
  margin-left: 5px;
}

.play-button:hover {
  transform: scale(1.1);
}
/* --- STYLE INSPIRÉ DE HOMI --- */
.container-small {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}
/* Texte et Atouts */
.section-intro {
  text-align: center;
  margin-bottom: 60px;
}
.badge-mini {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}
.title-display {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin: 30px 0;
  color: #111;
}

.subtitle-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.atouts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.atout-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.atout-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .atouts-grid {
    grid-template-columns: 1fr;
  }
  .title-display {
    font-size: 2rem;
  }
}
/* --- SECTION OUR STORY --- 0*/
.homi-story-section {
  padding: 80px 0;
  background-color: #fff;
}
.homi-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.homi-main-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 60px;
  color: #111;
}
.homi-story-grid {
  display: flex;
  align-items: center;
  gap: 80px; /* Espace entre l'image et le texte */
}
.homi-story-image {
  flex: 1;
}
.homi-story-image img {
  width: 100%;
  display: block;
  border-radius: 0; /* Garder les bords droits comme sur Homi */
}
.homi-story-content {
  flex: 1;
}
.story-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #111;
}
.story-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 35px;
}
/* Bouton Contact us style Homi */
.homi-btn-outline {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #c2b49a; /* Couleur beige/dorée discrète */
  background-color: #b5a489; /* Couleur de fond du bouton sur l'image */
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.homi-btn-outline:hover {
  background-color: #a39275;
  color: #fff;
}
/* Version Mobile */
@media (max-width: 768px) {
  .homi-story-grid {
    flex-direction: column;
    gap: 40px;
  }
  .homi-main-title {
    font-size: 2.2rem;
  }
  .story-heading {
    font-size: 1.8rem;
  }
}
/* --- STYLE SECTION TEAM (INSPIRÉ DE HOMI) --- 1*/
.homi-team-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}
.homi-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-header {
  margin-bottom: 60px;
}

.team-main-title {
  font-family:
    'Playfair Display', serif; /* Assure-toi que cette police est liée dans ton <head> */
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.team-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #888888;
  font-size: 1.1rem;
  font-weight: 300;
}
/* Grille */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.team-member-card {
  text-align: center;
}
/* Images carrées parfaites */
.team-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 25px;
}
.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.team-img-wrapper:hover img {
  transform: scale(1.05); /* Effet de zoom léger au survol */
}
/* Informations texte */
.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #111;
}
.team-info .role {
  font-family: 'Poppins', sans-serif;
  color: #b5a489; /* Couleur dorée/beige pour le rôle */
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Réseaux sociaux */
.team-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  border-color: #111;
  color: #111;
  background-color: #f9f9f9;
}

/* Adaptation pour les téléphones */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    gap: 50px;
  }

  .team-main-title {
    font-size: 2.2rem;
  }
}
/* --- SECTION BANNIÈRE PROMO STYLE HOMI --- 2*/
.homi-promo-banner {
  padding: 80px 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.promo-wrapper {
  width: 90%;
  max-width: 1200px;
  background-color: #fdf8ef; /* Le beige iconique de Homi */
  display: flex;
  align-items: center;
  padding: 60px 0; /* Espace interne vertical */
  position: relative;
}

/* Image à gauche */
.promo-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.promo-image img {
  max-width: 450px; /* Taille large pour l'impact visuel */
  width: 100%;
  height: auto;
  /* Optionnel : enlever le transform:rotate si vous voulez l'aspect plat de Homi */
  transition: transform 0.5s ease;
}

/* Texte à droite */
.promo-text-box {
  flex: 1;
  padding-right: 80px;
  padding-left: 40px;
  text-align: left;
}

.promo-badge {
  color: #e2a856; /* Jaune/Orange Homi */
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}
.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; /* Très grand titre */
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 25px;
}
.promo-description {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}
/* Bouton spécifique Homi */
.promo-btn-homi {
  display: inline-block;
  padding: 18px 40px;
  background-color: #e2a856;
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.promo-btn-homi:hover {
  background-color: #d1933d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 168, 86, 0.3);
}

/* Adaptation Mobile */
@media (max-width: 992px) {
  .promo-wrapper {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .promo-text-box {
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .promo-title {
    font-size: 2.8rem;
  }
}
/* --- SECTION TÉMOIGNAGES STYLE HOMI --- 3*/
.homi-testimonials-section {
  padding: 100px 0;
  background-color: #ffffff;
  text-align: center; /* Centre le titre par défaut */
}

.homi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column; /* Force le titre au-dessus de la grille */
  align-items: center;
}

/* Bloc Titre (En haut) */
.section-header {
  width: 100%;
  margin-bottom: 70px; /* Espace entre le titre et les cartes */
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  color: #888;
  font-size: 1.1rem;
}

/* Grille des Témoignages (En bas) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

/* Style de la carte individuelle */
.testimonial-card {
  background-color: #f9f9f9;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre le texte et l'image horizontalement */
  justify-content: center;
}

.testimonial-text {
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  font-style: italic;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-weight: 600;
  color: #111;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* --- SECTION LOGOS --- 4*/
.homi-logos-section {
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.logos-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0.6; /* Effet de sobriété pour les logos */
}

.logos-grid img {
  height: 40px;
  width: auto;
  filter: grayscale(100%); /* Logos en noir et blanc comme sur le design */
  transition: filter 0.3s ease;
}

.logos-grid img:hover {
  filter: grayscale(0%);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .logos-grid {
    justify-content: center;
    gap: 30px;
  }
}

/*================================================
  6. FOOTER (Épuré et Noir)
================================================*/
.site-footer {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding-top: 60px;
}
.footer-widgets {
  display: grid;
  /* Auto-fit crée automatiquement le nombre de colonnes selon la place */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5% 60px 5%;
}
.footer-widget-col {
  padding: 0 0px;
  border-right: 1px solid rgba(255, 255, 255, 0.1); /* Ligne verticale */
}
.footer-widget-col:last-child {
  border-right: none; /* Pas de ligne sur la dernière colonne */
}

.footer-widget-col h4 {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-widget-col ul {
  list-style: none;
} /*reture les point*/
.footer-widget-col ul li {
  margin-bottom: 15px;
}
.footer-widget-col ul li a {
  color: #999;
  text-decoration: none; /*retire le soulignement*/
  font-size: 0.9rem;
  transition: 0.3s;
}
.footer-widget-col ul li a:hover {
  color: var(--white);
}
/* Newsletter Style */
.newsletter input {
  width: 100%;
  padding: 15px;
  background: #222; /*fond*/
  border: none;
  color: white; /*texte blanc*/
  margin-bottom: 15px;
  margin-top: 20px;
}
.newsletter button {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
/* Style de l'overlay (fond sombre) */
.modal-overlay {
  display: none; /* Caché par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Contenu de la popup */
.modal-content {
  background: #fff;
  color: #333;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Boutons */
.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.btn-yes,
.btn-no {
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-yes {
  background: #a8947a;
  color: white;
} /* Couleur Homi */
.btn-no {
  background: #eee;
  color: #555;
}

.btn-yes:hover {
  background: #000;
}
.btn-no:hover {
  background: #ddd;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
.footer-newsletter-form button:hover {
  background-color: #8e7354;
  transform: translateY(-2px);
}
.payment-icons {
  margin-top: 25px;
  font-size: 1.5rem;
  display: flex;
  gap: 50px;
  opacity: 0.6;
}
.payment-methods img {
  height: 20px;
}
/* Copyright Bar */
.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  font-size: 0.85rem;
}
.social-icons {
  display: flex;
  gap: 20px;
}
.social-icons a {
  color: #555;
  font-size: 1rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #fff;
}
/*================================================
  7. RESPONSIVE DESIGN (Media Queries)
================================================*/

/* Tablette (Max 992px) */
@media (max-width: 992px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
  }
}

/* Smartphone (Max 600px) */
@media (max-width: 600px) {
  .footer-widgets {
    grid-template-columns: 1fr; /* 1 seule colonne */
    text-align: center;
  }

  .footer-widget-col {
    border-right: none;
    margin-bottom: 40px;
  }

  .payment-icons,
  .social-icons {
    justify-content: center;
  }

  .footer-copyright-bar {
    flex-direction: column; /* Texte au dessus des icônes */
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/*================================================
  7. UTILS & FLOATS
================================================*/
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
