:root {
  --lake: #2c6e7f;
  --lake-dark: #1f4f5c;
  --forest: #4a7856;
  --forest-dark: #375c40;
  --sand: #f5efe0;
  --sand-dark: #e8ddc4;
  --charcoal: #2b2b28;
  --accent: #e8a33d;
  --text-muted: #6b6558;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--charcoal);
  background-color: var(--sand);
}

h1, h2, h3, h4, .navbar-brand, .footer-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
}

/* --- Navbar --- */
.navbar-custom {
  background-color: #fff;
  border-bottom: 1px solid var(--sand-dark);
  padding: 0.9rem 0;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--lake-dark) !important;
}
.nav-link {
  color: var(--charcoal) !important;
  font-weight: 600;
  margin: 0 0.5rem;
}
.nav-link:hover { color: var(--lake) !important; }
.btn-reserve {
  background-color: var(--lake);
  color: #fff !important;
  border-radius: 30px;
  padding: 0.5rem 1.3rem;
  font-weight: 700;
  border: none;
}
.btn-reserve:hover { background-color: var(--lake-dark); color: #fff; }

/* --- Hero --- */
.hero {
  background-color: var(--lake-dark);
  background-image: linear-gradient(rgba(31,79,92,.6), rgba(31,79,92,.6)), url('/assets/img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 6.5rem 0;
  text-align: center;
}
.hero h1 { font-size: 2.8rem; font-weight: 700; }
.hero p.lead { font-size: 1.2rem; opacity: .95; }
.hero .btn-accent {
  background-color: var(--accent);
  border: none;
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  margin: 0 .5rem;
}
.hero .btn-outline-sand {
  border: 2px solid #fff;
  color: #fff;
  padding: .7rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  margin: 0 .5rem;
}
.hero .btn-outline-sand:hover { background: #fff; color: var(--charcoal); }

/* --- Sections --- */
.section { padding: 4.5rem 0; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title span {
  display: block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.section-alt { background-color: var(--sand-dark); }

/* --- Cartes offres (3 piliers) --- */
.offer-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(43,43,40,.08);
  transition: transform .25s ease;
  height: 100%;
}
.offer-card:hover { transform: translateY(-6px); }
.offer-card img { height: 200px; object-fit: cover; width: 100%; }
.offer-card .offer-body { padding: 1.5rem; }
.offer-card .offer-icon {
  width: 50px; height: 50px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* --- Activités --- */
.activity-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(43,43,40,.06);
  height: 100%;
  text-align: center;
}
.activity-card i { font-size: 2rem; color: var(--lake); margin-bottom: .8rem; }

/* --- Tarifs --- */
.price-table { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(43,43,40,.08); }
.price-table th { background: var(--lake); color: #fff; font-weight: 600; }
.price-table td, .price-table th { padding: .9rem 1.2rem; }

/* --- Avis --- */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(43,43,40,.06);
  height: 100%;
}
.review-stars { color: var(--accent); }
.rating-summary {
  background: var(--forest);
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.rating-summary .big-number { font-size: 3rem; font-weight: 700; font-family: 'Fredoka', sans-serif; }
.star-rating { display: flex; flex-direction: row-reverse; justify-content: center; gap: .3rem; font-size: 1.8rem; }
.star-rating input { display: none; }
.star-rating label { color: #ddd; cursor: pointer; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--accent); }

/* --- Galerie --- */
.gallery-item {
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 10px rgba(43,43,40,.08);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(43,43,40,.18); }
#galerieCarousel .carousel-caption {
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  border-radius: 8px;
  bottom: 0;
}

/* --- Contact --- */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(43,43,40,.08);
}
.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid var(--sand-dark);
  padding: .65rem .9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--lake);
  box-shadow: 0 0 0 .2rem rgba(44,110,127,.15);
}
.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: .8rem 2rem;
  font-weight: 700;
  width: 100%;
}
.btn-whatsapp:hover { background-color: #1ebe57; color: #fff; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; }

/* --- Footer --- */
.site-footer { background-color: var(--charcoal); color: #cfc9bc; }
.site-footer .footer-title { color: #fff; margin-bottom: 1rem; font-size: 1.15rem; }
.site-footer a { color: #cfc9bc; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

/* --- Bouton WhatsApp flottant --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 1000;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 4.5rem 0; }
}
