* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow: hidden;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: yellow;
  padding: 20px 30px;
  text-align: center;
  z-index: 100;
}

nav a {
  color: #114232;
  text-decoration: none;
  margin: 0 30px;
  font-size: 22px;
  font-weight: bold;
}

.dots {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 100;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: white;
  transform: scale(1.3);
}

.slider {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.slide {
  min-width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 40px;
  position: relative;
}

/* ── Accueil ── */
.accueil {
  padding-top: 70px;
  background-image:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("paysage.jpeg");
  background-size: cover;
  background-position: center;
}

.sous-titre {
  font-size: 1.1rem;
  opacity: 0.75;
  margin-top: 0.5rem;
}

/* ── Galerie ── */
.galerie {
  background: #114232;
  justify-content: flex-start;
  padding-top: 90px;
  overflow-y: auto;
}

.galerie h2 {
  color: white;
  margin-bottom: 20px;
}

.galerie-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px 40px;
}

.galerie-grille img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.galerie-grille img:hover {
  transform: scale(1.03);
}

/* ── Chambres ── */
.chambres {
  background: #114232;
  justify-content: flex-start;
  padding-top: 90px;
  overflow-y: auto;
}

.chambres h2 {
  color: white;
  margin-bottom: 8px;
}

.chambres p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.chambres-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px 40px;
}

.chambres-grille img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}

.chambres-grille img:hover {
  transform: scale(1.03);
}

/* ── Tarifs ── */
.tarifs {
  background-color: #114232;
  background-image: url("Tarifs.jpeg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Contact ── */
.contact {
  background-color: #114232;
  background-image: url("contact.png");
  background-size: 20%;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-gauche {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.contact-contenu {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── Flèche ── */
.fleche {
  position: absolute;
  bottom: 40px;
  font-size: 50px;
  color: white;
  animation: bounce 1.5s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ── WhatsApp ── */
.whatsapp {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}

.whatsapp:hover {
  opacity: 0.8;
}

/* ── Typographie ── */
h1 { font-size: 50px; margin-bottom: 15px; }
h2 { font-size: 40px; margin-bottom: 15px; }
p  { font-size: 22px; line-height: 1.6; }