/* =====================================================
   ELODIE EVENTS — Feuille de styles partagée
   Palette : beige sable, nude rosé, blanc cassé
   ===================================================== */

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #3A3532;
  background: #FAF7F2;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Scroll mobile fluide (iOS) */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* Bouton burger : zone tactile élargie sur mobile (Apple recommande 44px min) */
#burger {
  width: 44px !important;
  height: 44px !important;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  touch-action: manipulation;
}
#burger span {
  pointer-events: none;
}

/* Tous les éléments cliquables sur mobile : feedback tactile désactivé */
a, button { -webkit-tap-highlight-color: rgba(184, 150, 132, 0.15); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ---------- Dégradés signature ---------- */
.gradient-soft {
  background: linear-gradient(135deg, #FAF7F2 0%, #F4ECE2 45%, #E8D5C4 100%);
}
.gradient-blush {
  background: linear-gradient(160deg, #F4ECE2 0%, #DDB7A8 100%);
}
.gradient-text {
  background: linear-gradient(120deg, #B89684, #D4B5A0 60%, #DDB7A8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Signature manuscrite ---------- */
.signature {
  font-family: 'Allison', cursive;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #B89684;
  line-height: 1;
}

/* ---------- Décoratifs ---------- */
.divider-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #B89684;
  vertical-align: middle;
  margin: 0 14px 6px;
}

/* ---------- Boutons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  background: #B89684;
  color: #FAF7F2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .4s ease;
  box-shadow: 0 12px 28px -14px rgba(184, 150, 132, 0.55);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: #3A3532;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(58, 53, 50, 0.55);
}
.btn-primary i { transition: transform .4s ease; }
.btn-primary:hover i { transform: translateX(6px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border: 1px solid #B89684;
  color: #B89684;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .4s ease;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover {
  background: #B89684;
  color: #FAF7F2;
}

/* ---------- Logo (image réelle) ---------- */
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .logo-img { height: 48px; }
}

/* ---------- Navigation ---------- */
.nav-link {
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #3A3532;
  padding: 6px 2px;
  transition: color .3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: #B89684;
  transition: all .4s ease;
  transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active { color: #B89684; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .35s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  margin-top: 1rem;
  width: 17rem;
  background: #FAF7F2;
  border: 1px solid rgba(232, 213, 196, 0.6);
  border-radius: 1rem;
  box-shadow: 0 20px 50px -25px rgba(58, 53, 50, 0.25);
  padding: 0.6rem 0;
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: #3A3532;
  transition: all .25s ease;
}
.dropdown a:hover { background: #F4ECE2; color: #B89684; }

/* ---------- Cards prestations ---------- */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #FAF7F2;
  border: 1px solid rgba(184, 150, 132, 0.15);
  transition: all .5s cubic-bezier(.2,.8,.2,1);
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 150, 132, 0.45);
  box-shadow: 0 30px 60px -30px rgba(140, 116, 104, 0.35);
}
.service-card .img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.service-card .img-wrap img,
.service-card .img-wrap .img-fallback {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
  /* Léger zoom pour masquer les bordures noires éventuelles */
  transform: scale(1.025);
}
.service-card:hover .img-wrap img,
.service-card:hover .img-wrap .img-fallback { transform: scale(1.08); }

.img-fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F4ECE2 0%, #D4B5A0 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-align: center;
}

/* ---------- Reasons (Pourquoi choisir) ---------- */
.reason-card {
  background: #FAF7F2;
  border: 1px solid rgba(184, 150, 132, 0.18);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all .5s ease;
}
.reason-card:hover {
  background: #fff;
  transform: translateY(-4px);
  border-color: #D4B5A0;
  box-shadow: 0 25px 50px -25px rgba(140, 116, 104, 0.3);
}
.reason-icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F4ECE2, #D4B5A0);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

/* ---------- Galerie Masonry ---------- */
.masonry {
  column-count: 1;
  column-gap: 1rem;
}
@media (min-width: 640px) { .masonry { column-count: 2; column-gap: 1.25rem; } }
@media (min-width: 1024px) { .masonry { column-count: 3; column-gap: 1.5rem; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img,
.masonry-item .img-fallback {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1s ease;
  /* Léger zoom pour masquer les bordures noires de certaines photos */
  transform: scale(1.025);
  transform-origin: center;
}
.masonry-item:hover img,
.masonry-item:hover .img-fallback { transform: scale(1.07); }
.masonry-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58, 53, 50, 0.65) 100%);
  opacity: 0;
  transition: opacity .5s ease;
  display: flex; align-items: flex-end; padding: 1.25rem;
  color: #FAF7F2;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.masonry-item:hover .overlay { opacity: 1; }
.ph-1 { aspect-ratio: 4/5; }
.ph-2 { aspect-ratio: 1/1; }
.ph-3 { aspect-ratio: 3/4; }
.ph-4 { aspect-ratio: 4/3; }
.ph-5 { aspect-ratio: 5/6; }
.ph-6 { aspect-ratio: 2/3; }

/* ---------- Section heading ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #B89684;
  font-weight: 500;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(58, 53, 50, 0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 2rem;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox .close-btn {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(250, 247, 242, 0.15);
  color: #FAF7F2;
  width: 44px; height: 44px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212, 181, 160, 0.4);
  cursor: pointer;
  transition: all .3s ease;
  z-index: 102;
}
.lightbox .close-btn:hover { background: #B89684; }

/* Lightbox prev/next arrows */
.lightbox .lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.12);
  border: 1px solid rgba(212, 181, 160, 0.4);
  color: #FAF7F2;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
  z-index: 102;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox .lb-arrow:hover {
  background: #B89684;
  border-color: #B89684;
  transform: translateY(-50%) scale(1.06);
}
.lightbox .lb-arrow--prev { left: 1.5rem; }
.lightbox .lb-arrow--next { right: 1.5rem; }
@media (max-width: 640px) {
  .lightbox .lb-arrow { width: 44px; height: 44px; font-size: 0.95rem; }
  .lightbox .lb-arrow--prev { left: 0.75rem; }
  .lightbox .lb-arrow--next { right: 0.75rem; }
}

/* Lightbox counter */
.lightbox .lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  color: #D4B5A0;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  background: rgba(58, 53, 50, 0.6);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 181, 160, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 102;
}
.lightbox .lb-counter span { color: rgba(250, 247, 242, 0.55); }

/* Image cliquable mais pas le wrapper */
.lightbox img { cursor: zoom-out; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.in-view { animation: fadeUp 1s ease forwards; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.float-soft { animation: float 6s ease-in-out infinite; }

/* ---------- Footer ---------- */
.footer-link {
  color: rgba(250,247,242,0.7);
  transition: color .3s ease;
  font-size: 0.85rem;
}
.footer-link:hover { color: #D4B5A0; }

.social-icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212, 181, 160, 0.4);
  color: #D4B5A0;
  transition: all .4s ease;
}
.social-icon:hover {
  background: #D4B5A0;
  color: #3A3532;
  transform: translateY(-2px);
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
body.no-scroll { overflow: hidden; }

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.mobile-submenu.open { max-height: 600px; }

/* ---------- Sticky header background change ---------- */
.header-scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184,150,132,0.18);
}

/* ---------- Page banner (sub pages) ---------- */
.page-banner {
  background: linear-gradient(135deg, #FAF7F2 0%, #F4ECE2 50%, #E8D5C4 100%);
  padding: 11rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(212, 181, 160, 0.18);
  filter: blur(40px);
}
.page-banner::before {
  width: 280px; height: 280px;
  top: -80px; left: -60px;
}
.page-banner::after {
  width: 360px; height: 360px;
  bottom: -120px; right: -80px;
  background: rgba(221, 183, 168, 0.18);
}
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0;
  position: relative;
}
.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8C7468;
  position: relative;
}
.breadcrumb a:hover { color: #B89684; }

/* ---------- Form ---------- */
.form-field {
  display: flex; flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8C7468;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #FAF7F2;
  border: 1px solid rgba(184, 150, 132, 0.25);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #3A3532;
  transition: all .3s ease;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #B89684;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 150, 132, 0.12);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* ---------- Utility ---------- */
.grain {
  position: relative;
}
.grain::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(184,150,132,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ---------- Themed map (carte contact en tons nude) ---------- */
.themed-map {
  position: relative;
  isolation: isolate;
}
.themed-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  /* Filtre pour transformer la carte OpenStreetMap en tons nude/sépia */
  filter: sepia(0.55) saturate(0.55) hue-rotate(335deg) brightness(0.98) contrast(0.92);
  transition: filter .4s ease;
}
.themed-map:hover iframe {
  filter: sepia(0.35) saturate(0.7) hue-rotate(335deg) brightness(1) contrast(0.95);
}
.themed-map__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(184, 150, 132, 0.08) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.themed-map__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(58, 53, 50, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FAF7F2;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 181, 160, 0.4);
  pointer-events: none;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.themed-map__badge i { color: #D4B5A0; font-size: 0.75rem; }

/* ---------- Avis clients carousel (manuel) ---------- */
.reviews-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.reviews-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.reviews-marquee {
  position: relative;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1.5rem 0.5rem 1.5rem;
}
.reviews-marquee::-webkit-scrollbar { display: none; }

.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

/* Flèches prev/next */
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 999px;
  background: #FAF7F2;
  border: 1px solid rgba(184, 150, 132, 0.35);
  color: #B89684;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
  z-index: 5;
  box-shadow: 0 12px 30px -12px rgba(140, 116, 104, 0.45);
}
.reviews-arrow:hover {
  background: #B89684;
  color: #FAF7F2;
  border-color: #B89684;
  transform: translateY(-50%) scale(1.06);
}
.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.reviews-arrow:disabled:hover {
  background: #FAF7F2;
  color: #B89684;
  transform: translateY(-50%);
}
.reviews-arrow--prev { left: -10px; }
.reviews-arrow--next { right: -10px; }
@media (min-width: 1024px) {
  .reviews-arrow--prev { left: -24px; }
  .reviews-arrow--next { right: -24px; }
}
@media (max-width: 640px) {
  .reviews-arrow {
    width: 42px; height: 42px;
    font-size: 0.85rem;
  }
}

.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #FAF7F2;
  border: 1px solid rgba(184, 150, 132, 0.2);
  border-radius: 22px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 12px 30px -18px rgba(140, 116, 104, 0.25);
  transition: transform .4s ease, box-shadow .4s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -25px rgba(140, 116, 104, 0.4);
}
@media (min-width: 640px) { .review-card { flex: 0 0 360px; } }

.review-card__quote {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F4ECE2, #D4B5A0);
  display: flex; align-items: center; justify-content: center;
  color: #FAF7F2;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 8px 20px -8px rgba(184, 150, 132, 0.5);
}
.review-card__stars {
  color: #D4B5A0;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.85rem;
}
.review-card__text {
  font-family: 'Cormorant Garamond', serif;
  color: #3A3532;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
  flex: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-card__name {
  font-family: 'Allison', cursive;
  font-size: 2rem;
  color: #B89684;
  line-height: 1;
}
.review-card__event {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8C7468;
  margin-top: 0.4rem;
}

/* ---------- Theme grid (galerie groupée par thème) ---------- */
.theme-section {
  margin-bottom: 5rem;
}
.theme-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 150, 132, 0.18);
}
.theme-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #3A3532;
  letter-spacing: 0.02em;
  margin: 0;
}
.theme-section__title em {
  font-style: italic;
  background: linear-gradient(120deg, #B89684, #D4B5A0 60%, #DDB7A8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 0.5rem;
}
.theme-section__meta {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #B89684;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .theme-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .theme-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.theme-grid__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: #F4ECE2;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.theme-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -25px rgba(140, 116, 104, 0.4);
}
.theme-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
  /* Léger zoom pour masquer les bordures noires de certaines photos */
  transform: scale(1.025);
}
.theme-grid__item:hover img {
  transform: scale(1.08);
}
.theme-grid__item .item-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(58, 53, 50, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FAF7F2;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(212, 181, 160, 0.4);
  z-index: 2;
  pointer-events: none;
}
.theme-grid__item .item-badge i { color: #D4B5A0; }

/* ---------- Event carousel (slider par évènement) ---------- */
.event-block {
  margin-bottom: 4.5rem;
}
.event-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.event-block__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #3A3532;
  letter-spacing: 0.02em;
}
.event-block__title em {
  font-style: italic;
  background: linear-gradient(120deg, #B89684, #D4B5A0 60%, #DDB7A8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.event-block__meta {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #B89684;
}

.carousel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #F4ECE2;
  box-shadow: 0 25px 60px -30px rgba(140, 116, 104, 0.35);
}
.carousel__track {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #F4ECE2;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .carousel__slide { aspect-ratio: 16 / 9; }
}

/* Badge "Buzz révélation" sur la première slide */
.carousel__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(58, 53, 50, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FAF7F2;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(212, 181, 160, 0.4);
  z-index: 2;
}
.carousel__badge i { color: #D4B5A0; }

/* Boutons prev/next */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.92);
  color: #3A3532;
  border: 1px solid rgba(184, 150, 132, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all .35s ease;
  z-index: 3;
  box-shadow: 0 8px 20px -8px rgba(58, 53, 50, 0.35);
}
.carousel__btn:hover {
  background: #B89684;
  color: #FAF7F2;
  border-color: #B89684;
}
.carousel__btn--prev { left: 1rem; }
.carousel__btn--next { right: 1rem; }
.carousel__btn:disabled { opacity: 0.35; cursor: default; }

/* Compteur + dots */
.carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: #FAF7F2;
  border-top: 1px solid rgba(184, 150, 132, 0.18);
}
.carousel__counter {
  font-family: 'Playfair Display', serif;
  color: #B89684;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.carousel__counter span { color: #8C7468; }
.carousel__dots {
  display: flex;
  gap: 0.4rem;
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(184, 150, 132, 0.3);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.carousel__dot.active {
  background: #B89684;
  width: 24px;
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: calc(100% - 2rem);
  max-width: 720px;
  background: rgba(58, 53, 50, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #FAF7F2;
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
  z-index: 90;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(212, 181, 160, 0.18);
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner__text {
  flex: 1 1 280px;
  font-size: 0.85rem;
  line-height: 1.55;
  font-weight: 300;
}
.cookie-banner__text strong {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
  color: #D4B5A0;
}
.cookie-banner__text a { color: #D4B5A0; text-decoration: underline; }
.cookie-banner__text a:hover { color: #FAF7F2; }
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
  border: none;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: #D4B5A0;
  color: #3A3532;
}
.cookie-btn--accept:hover { background: #FAF7F2; }
.cookie-btn--reject {
  background: transparent;
  color: #FAF7F2;
  border: 1px solid rgba(212, 181, 160, 0.4);
}
.cookie-btn--reject:hover {
  background: rgba(212, 181, 160, 0.15);
  border-color: #D4B5A0;
}

@media (max-width: 640px) {
  .cookie-banner { bottom: 0.75rem; padding: 1.1rem 1.2rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ---------- Hero (homepage, no flower bg) ---------- */
.hero-clean {
  background: linear-gradient(135deg, #FAF7F2 0%, #F4ECE2 60%, #E8D5C4 100%);
  position: relative;
  overflow: hidden;
}
.hero-clean::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(221, 183, 168, 0.18), transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.hero-clean::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 181, 160, 0.18), transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}

/* Logo arc decoratif (rappel logo) */
.logo-arc {
  position: relative;
}
.logo-arc::before {
  content: "";
  position: absolute;
  width: 110%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 150, 132, 0.35);
  border-bottom-color: transparent;
  border-radius: 999px;
  top: -8%;
  left: -5%;
  transform: rotate(-2deg);
  pointer-events: none;
}
