/* Global design tokens — premium light theme for eclatheureux.vip */
:root {
  --eclat-cream: #f8f6f1;
  --eclat-sand: #ede8df;
  --eclat-ivory: #faf9f6;
  --eclat-gold: #c7a87c;
  --eclat-gold-light: #e3d2b6;
  --eclat-gold-dark: #9c7d4f;
  --eclat-navy: #1a2332;
  --eclat-charcoal: #2c2c2c;
  --eclat-sage: #6b8e7b;
  --eclat-sage-dark: #4f6b5c;
  --eclat-rose: #c9a8a1;
  --eclat-indigo: #2d3047;
  --eclat-body: #3a3a3a;
  --eclat-heading: #1a2332;
  --eclat-radius: 1.25rem;
  --eclat-radius-sm: 0.75rem;
  --eclat-shadow: 0 18px 50px rgba(26, 35, 50, 0.12);
  --eclat-shadow-sm: 0 6px 18px rgba(26, 35, 50, 0.08);
}

/* Typography & base */
body {
  background-color: var(--eclat-cream);
  color: var(--eclat-body);
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-serif {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--eclat-heading);
  line-height: 1.15;
  font-weight: 500;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

a {
  color: var(--eclat-gold-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--eclat-navy);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.text-gold { color: var(--eclat-gold) !important; }
.bg-gold { background-color: var(--eclat-gold) !important; }
.text-navy { color: var(--eclat-navy) !important; }
.bg-navy { background-color: var(--eclat-navy) !important; color: #fff; }
.bg-cream { background-color: var(--eclat-cream) !important; }
.bg-sand { background-color: var(--eclat-sand) !important; }
.bg-sage { background-color: var(--eclat-sage) !important; color: #fff; }
.border-gold { border-color: var(--eclat-gold) !important; }

/* Decorative elements */
.deco-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--eclat-gold), transparent);
}

.deco-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--eclat-gold);
  display: inline-block;
}

.deco-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: var(--eclat-gold);
  opacity: 0.18;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.deco-frame {
  position: relative;
}
.deco-frame::before {
  content: "";
  position: absolute;
  inset: -1rem;
  border: 1px solid var(--eclat-gold-light);
  z-index: -1;
  transform: rotate(-2deg);
  border-radius: var(--eclat-radius);
}

/* Buttons */
.btn-eclat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid var(--eclat-gold);
  background: var(--eclat-gold);
  color: var(--eclat-navy);
  transition: all 0.25s ease;
}

.btn-eclat:hover {
  background: var(--eclat-navy);
  color: var(--eclat-gold);
  border-color: var(--eclat-navy);
}

.btn-outline-eclat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid var(--eclat-navy);
  background: transparent;
  color: var(--eclat-navy);
  transition: all 0.25s ease;
}

.btn-outline-eclat:hover {
  background: var(--eclat-navy);
  color: #fff;
}

.btn-white-eclat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid #fff;
  background: #fff;
  color: var(--eclat-navy);
  transition: all 0.25s ease;
}

.btn-white-eclat:hover {
  background: transparent;
  color: #fff;
}

/* Sections */
.section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
}

.section-dark {
  background-color: var(--eclat-navy);
  color: #f0f0f0;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark .display-serif {
  color: #fff;
}

.section-dark a {
  color: var(--eclat-gold-light);
}

.section-dark a:hover {
  color: #fff;
}

/* Background images with overlays are handled via inline style per requirements: 
   style="background-image: linear-gradient(...), url(../../images/eclatheureux_hotel_28.jpg);" */
.bg-section-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Cards */
.card-eclat {
  background: var(--eclat-gold);
  border: 1px solid var(--eclat-sand);
  border-radius: var(--eclat-radius);
  box-shadow: var(--eclat-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card-eclat:hover {
  transform: translateY(-6px);
  box-shadow: var(--eclat-shadow);
}

.card-eclat .card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-eclat .card-body {
  padding: 1.75rem;
}

/* Overlay card (dark text on image) */
.card-overlay {
  position: relative;
  border-radius: var(--eclat-radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
  background-size: cover;
  background-position: center;
}

.card-overlay .card-overlay-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.card-overlay .card-overlay-content h3,
.card-overlay .card-overlay-content p {
  color: #fff;
}

/* Asymmetric grids */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .editorial-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
  .editorial-grid.reverse {
    direction: rtl;
  }
  .editorial-grid.reverse > * {
    direction: ltr;
  }
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .bento-item.wide { grid-column: span 2; }
  .bento-item.tall { grid-row: span 2; }
}

.bento-item {
  border-radius: var(--eclat-radius);
  padding: 1.75rem;
  background: var(--eclat-ivory);
  box-shadow: var(--eclat-shadow-sm);
  position: relative;
  overflow: hidden;
}

/* Marquee for testimonials */
.marquee-row {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-row.reverse {
  animation-direction: reverse;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-row:hover {
  animation-play-state: paused;
}

.marquee-item {
  width: 360px;
  flex-shrink: 0;
}

/* Header */
.site-header {
  background: rgba(248, 246, 241, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--eclat-sand);
  z-index: 1030;
}

.top-bar {
  font-size: 0.82rem;
  border-bottom: 1px solid var(--eclat-sand);
  padding: 0.5rem 0;
  color: var(--eclat-charcoal);
}

.top-bar i {
  color: var(--eclat-gold);
  margin-right: 0.4rem;
}

.navbar-brand img {
  height: 48px;
  width: auto;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--eclat-navy);
  padding: 0.75rem 1rem;
  border-radius: 50rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--eclat-gold-dark);
  background: var(--eclat-sand);
}

.navbar-toggler {
  border: none;
  color: var(--eclat-navy);
  font-size: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--eclat-navy);
  color: #d6d6d6;
  padding: 4rem 0 1.5rem;
}

.site-footer h4,
.site-footer h5 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.site-footer a {
  color: var(--eclat-gold-light);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #bbb;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--eclat-navy);
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 1080;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

/* Forms */
.form-control,
.form-select {
  border: 1px solid var(--eclat-sand);
  border-radius: var(--eclat-radius-sm);
  padding: 0.85rem 1rem;
  background: var(--eclat-ivory);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--eclat-gold);
  box-shadow: 0 0 0 0.2rem rgba(199, 168, 124, 0.25);
  background: #fff;
}

.form-notification {
  display: none;
  padding: 1rem;
  border-radius: var(--eclat-radius-sm);
  background: var(--eclat-sage);
  color: #fff;
  margin-bottom: 1rem;
}

.form-notification.show { display: block; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--eclat-gold);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--eclat-gold);
  border: 2px solid #fff;
}

/* Map embed */
.map-embed {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: var(--eclat-radius);
  filter: grayscale(20%);
}

/* Smooth hover for image cards */
.img-hover {
  overflow: hidden;
}

.img-hover img,
.img-hover .card-img {
  transition: transform 0.5s ease;
}

.img-hover:hover img,
.img-hover:hover .card-img {
  transform: scale(1.05);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
