/* header & barre de navigation Generale */

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff8ed;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* === Couleurs & textes === */
.text-choco { color: #4b2e2b; }
.text-gold { color: #d4af37; text-shadow: 0 0 8px rgba(212,175,55,0.4); }

/* === Header === */
.header {
  background-color: #f8f7ee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-text {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInText 1s ease forwards 0.3s;
}
@keyframes fadeInText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo {
  border-radius: 10px;
  transition: all 0.4s ease;
}
.logo:hover { transform: scale(1.05) rotate(-2deg); filter: drop-shadow(0 0 5px #d4af37); }

/* === Navigation basse === */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f8f7ee;
  height: 70px;
  border-top: 2px solid #d4af37;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.bottom-nav .nav-item {
  color: #4b2e2b;
  text-align: center;
  flex-grow: 1;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.bottom-nav .nav-item i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 2px;
}
.bottom-nav .nav-item:hover {
  color: #d4af37;
  transform: translateY(-3px);
}
.bottom-nav .active { color: #d4af37; }


/* === Effets Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive  === */ 
@media (max-width: 768px) {
  .carousel-caption h1 { font-size: 1.8rem; }
  .carousel-caption p { font-size: 0.9rem; }
  .features .col-md-4 { margin-bottom: 30px; }
}




/* HEADER */
/*{"id":"75521","variant":"standard","title":"Header Premium CSS"}*/
#announce-header {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  /* BACKGROUND DYNAMIQUE PROFESSIONNEL + VOILE NOIR */
  background-image: 
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("../img/motifs/2.png");
  background-size: 280px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.95;

  animation: bgMove 22s linear infinite;
  z-index: 1;
}

/* LENT MOUVEMENT DU BACKGROUND */
@keyframes bgMove {
  0% { background-position: 0px 0px; background-size: 260px; }
  50% { background-position: 80px 120px; background-size: 300px; }
  100% { background-position: 0px 0px; background-size: 260px; }
}

/* === OVERLAY FUMÉE SVG === */
.smoke-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.smoke {
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 140px;
  transform: translateX(-50%);
  animation: rise 6s infinite ease-in-out;
}

.smoke-1 { opacity: 0.55; animation-duration: 5s; }
.smoke-2 { opacity: 0.35; animation-duration: 6.5s; left: 40%; }
.smoke-3 { opacity: 0.25; animation-duration: 7.5s; left: 60%; }

@keyframes rise {
  0%   { transform: translateX(-50%) translateY(0) scale(0.8); }
  100% { transform: translateX(-50%) translateY(-220px) scale(1.25); }
}

/* === GLASS CARD PREMIUM === */
.glass-card {
  padding: 35px 50px;
  text-align: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 35px rgba(0,0,0,0.25);
  position: relative;
  z-index: 5;

  opacity: 0;
  transform: translateY(30px);
  animation: cardEnter 1.2s ease forwards;
}

@keyframes cardEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* LOGO FLOTTANT PREMIUM */
.brand-logo {
  height: 95px;
  margin-bottom: 12px;
  animation: logoFloat 4s ease-in-out infinite alternate;
  position: relative;
  z-index: 6;
}

@keyframes logoFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

/* HALO LUMINEUX PREMIUM */
.brand-logo::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(rgba(255,215,0,0.45), transparent 70%);
  filter: blur(22px);
  border-radius: 50%;
  z-index: -1;
}

/* TITRE PREMIUM */
.title {
  font-size: 2.6rem;
  color: #f2e1d3;
  margin: 0 0 12px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* TEXTE PREMIUM */
.subtitle {
  font-size: 1.15rem;
  color: #000000;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* BOUTON OR PREMIUM */
.btn-gold {
  background: #d4af37;
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(212,175,55,0.55);
  transition: 0.35s;
  z-index: 6;
}

.btn-gold:hover {
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(212,175,55,0.85);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 110%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -120%; }
  100% { left: 120%; }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  #announce-header { height: 460px; }

  .glass-card {
    width: 88%;
    padding: 22px;
  }

  .title { font-size: 2.2rem; }
  .subtitle { font-size: 1rem; }
}



/* ===== HERO & CARUSSOL ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ===== IMAGE ANIMÉE CINÉMATIQUE ===== */
.hero-img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  transform: scale(1.15);
  opacity: 0;
  filter: blur(2px);
  transition:
    transform 8s ease-in-out,
    opacity 1.8s ease,
    filter 1.8s ease;
}

/* Quand le slide devient actif */
.carousel-item.active .hero-img {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1.05) translateY(-10px);
}

/* Overlay sombre */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 2;
}

/* ===== TEXTE CINÉMATIQUE ===== */
.cinematic-text {
  z-index: 3;
  text-shadow: 0 0 12px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: 0.4s;
}

/* Active = texte animé */
.carousel-item.active .cinematic-text {
  opacity: 1;
  transform: translateY(0);
}

/* TITRE */
.title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
}

.title span {
  color: #d4af37;
}

/* SOUS-TEXTE */
.subtitle {
  font-size: 1.3rem;
  color: #efefef;
  margin-bottom: 20px;
}

/* ===== BOUTON GOLD ===== */
.btn-gold {
  background: #d4af37;
  color: #1a1a1a;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background: #b8942b;
  transform: scale(1.07);
}

/* ===== CONTROLS ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .title { font-size: 2.2rem; }
  .subtitle { font-size: 1rem; }
}
/* === FIX CINÉMATIQUE ANTI-FLASH GRIS === */
.carousel-item {
  background-color: #000 !important; /* supprime le flash gris */
  position: relative;
}

.carousel-inner {
  background: #000;
}

.carousel-item img.hero-img {
  display: block;
  background: #000;
}

/* Empêche Bootstrap d'afficher l'image trop tôt */
.carousel-item:not(.active) .hero-img {
  opacity: 0 !important;
}


/* === Sections === */
.intro, .features, .cta {
  background-color: #fffdf7;
}
.features i {
  transition: transform 0.3s ease;
}
.features i:hover { transform: scale(1.2); }

.cta {
  background: linear-gradient(to right, #4b2e2b, #d4af37);
  color: white;
}
.cta h3 { color: #fff; }
.cta .btn-gold { background-color: #fff; color: #4b2e2b; }
.cta .btn-gold:hover { background-color: #f5e2a7; }





/* ==== Apropos  === */

/* --- Histoire & Valeurs --- */
.story-section p {
  font-size: 1rem;
  line-height: 1.6;
}
.values-box {
  background: #fff;
  border-left: 5px solid #d4af37;
}
.values-box ul li {
  font-weight: 500;
  margin-bottom: 10px;
}
.values-box ul li i {
  margin-right: 8px;
}

/* --- Équipe --- */
.team-photo {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: 0.3s ease;
}
.team-photo:hover {
  transform: scale(1.05);
}

/* --- Avis Clients Slider --- */
.reviews-slider-wrapper {
  overflow: hidden;
}
.reviews-slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.review-card {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
}
.client-photo {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid #d4af37;
}
.review-text {
  flex: 1;
  font-size: 1rem;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Pagination dots --- */
.slider-dots {
  display: inline-block;
}
.slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.slider-dots .dot.active {
  background-color: #4caf50; /* vert */
}


/* --- Reveal Animation  --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .story-section .row {
    flex-direction: column !important;
  }
  .story-section .col-lg-6 {
    text-align: center !important;
  }
  .review-card {
    flex-direction: column;
    text-align: center;
  }
  .client-photo {
    margin-bottom: 15px;
  }
}




/* ---------- Menu ---------- */

/* === FILTRE STICKY MODERNE === */
.sticky-filter {
  position: sticky;
  top: 60px; /* Ajuste selon la hauteur de ton header */
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

/* Conteneur centré */
.filter-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Barre de défilement horizontale invisible */
.filter-container::-webkit-scrollbar {
  display: none;
}

/* Boutons alignés horizontalement */
.filter-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 0 12px;
}

/* Style des boutons */
.btn-filter {
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: rgba(255, 255, 255, 0.7);
  color: #3a2c0e;
  font-weight: 500;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* Effet au survol */
.btn-filter:hover {
  background: #d4af37;
  color: #fff;
  transform: scale(1.05);
}

/* Bouton actif */
.btn-filter.active {
  background: #d4af37;
  color: white;
  border-color: #d4af37;
  font-weight: 600;
}

/* Animation d’apparition des cartes */
.menu-item {
  transition: all 0.5s ease;
}
.menu-item.hide {
  opacity: 0;
  transform: scale(0.95);
}
.menu-item.show {
  opacity: 1;
  transform: scale(1);
}




/* === Style des cartes produits === */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
.card-img-top {
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid #f2f2f2;
}
.card-body {
  padding: 1rem;
}

/* === Bouton du panier (icône flottante comme avant) === */
.open-cart-btn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  background-color: #d4af37;
  color: black;
  border: none;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1300;
  transition: all 0.3s ease;
}
.open-cart-btn:hover {
  transform: scale(1.1);
  background-color: #c19d2b;
}
.cart-count {
  position: absolute;
  top: 6px;
  right: 8px;
  background-color: #4caf50;
  color: white;
  font-size: 13px;
  font-weight: bold;
  border-radius: 50%;
  padding: 3px 6px;
}

/* === Panier amélioré et corrigé === */
.cart-panel {
  position: fixed;
  right: 20px;
  bottom: 160px;
  width: 340px;
  max-height: 75vh;
  background: #ffffff;
  border-radius: 10px;
  z-index: 1200;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(0,0,0,0.1);
}
.cart-header {
  background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(212,175,55,0.06));
  font-weight: 600;
  border-bottom: 1px solid #eee;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}
.cart-footer {
  position: sticky;
  bottom: 0;
  background: #fffdf6;
  border-top: 1px solid #ddd;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
  padding: 1rem;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #eee;
  padding: 8px 0;
}
.cart-item:last-child { border-bottom: none; }
.price-small { font-weight: bold; color: #4b2e2b; }
.qty-controls button {
  background: #f5f5f5;
  border: none;
  border-radius: 4px;
  width: 26px;
  height: 26px;
}
.cart-footer .btn-success {
  background: #25D366;
  border: none;
  font-weight: 600;
}
.cart-footer .btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
  font-weight: 500;
}

/* === ajustement de la carte sur Mobile === */
@media (max-width: 480px) {
  .cart-panel {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    bottom: 90px;
    max-height: 80vh;
  }
  .open-cart-btn {
    width: 55px;
    height: 55px;
    font-size: 22px;
    bottom: 85px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  #product-list .menu-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* === ajustement du filre === */

@media (max-width: 767px) {
  .sticky-filter {
    top: 55px;
    padding: 8px 0;
  }

  .btn-filter {
    padding: 7px 14px;
    font-size: 0.85rem;
  }

  .filter-scroll {
    justify-content: flex-start;
  }
}

@media (max-width: 400px) {
  .btn-filter {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}











/* ---------- contact ---------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
  --gold: #d4af37;
  --gold-dark: #b8942b;
  --choco: #4b2e2b;
  --cream: #fff8ed;
}


.display-6 { color: var(--choco); transition: color 0.3s ease; }
.lead { color: #666; transition: color 0.3s ease; }

.info-card { background: #fff; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.info-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

.icon { width:44px; height:44px; display:inline-flex; align-items:center; justify-content:center; transition: all 0.3s ease; }
.bg-gold { background: rgba(212,175,55,0.1); color: var(--gold-dark); border:1px solid rgba(212,175,55,0.2); }

.btn-success { background:#25D366; border:none; transition: all 0.3s ease; }
.btn-success:hover { background:#1ebd5c; transform: scale(1.02); }

.social-link {
  display:inline-flex; width:44px; height:44px;
  border-radius:10px; align-items:center; justify-content:center;
  background:#fff; color:var(--choco);
  border:1px solid rgba(0,0,0,0.05);
  transition:all .3s ease;
}
.social-link:hover { transform:translateY(-4px) scale(1.1); box-shadow:0 6px 20px rgba(0,0,0,0.1); color:var(--gold-dark); }

.card { border-radius:12px; border:none; transition: all 0.4s ease; }
.map-wrap { min-height:280px; overflow:hidden; transition: all 0.4s ease; }

.bottom-nav {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: #fff; padding: 10px 0;
  border-top: 1px solid #ddd;
  transition: all 0.3s ease;
}
.bottom-nav .nav-item {
  text-align: center; flex: 1; color: #444; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; font-size: 0.85rem;
  transition: all 0.3s ease;
}
.bottom-nav .nav-item.active { color: var(--gold-dark); transform: scale(1.1); }

.fade-in { animation: fadeIn 1s ease-in-out; }
.fade-in-delay { animation: fadeIn 1.2s ease-in-out; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.smooth-hover { transition: all 0.3s ease; }

@media (max-width: 768px) {
  .map-wrap { min-height: 220px; }
  .contact-hero { padding: 2rem 1rem; }
}





/* === GALERIE === */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10000;
}
.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border: 3px solid #d4af37;
  border-radius: 10px;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}
.caption {
  color: #fff;
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.3s ease;
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === Boutons lightbox === */
.close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
}
.close-btn:hover { color: #d4af37; }

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
}
.prev { left: 30px; }
.next { right: 30px; }
.prev:hover, .next:hover { color: #d4af37; }

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 75vh;
  }
}


/* === FOOTER GENERAL  === */
.footer {
  background-color: #1a1a1a;
  color: #faf9f5;
  font-size: 0.9rem;
  padding: 30px 0 80px;
}