body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: aqua;
  background: linear-gradient(rgba(61, 91, 224, 0.4) , rgba(204, 49, 41, 0.4) 70% );
  margin: 0;
  overflow-x: hidden;
  animation: fadeInDown 1,5s ease;
}

/* ------------------------------
   🏖️ EN-TÊTE
------------------------------ */
header {
  color: var(--text-light);
  height:500px ;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


header h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: fadeInDown 1.5s ease;
}

header p {
  font-size: 20px;
  margin-bottom: 30px;
  animation: fadeInUp 1.5s ease;
}

header a.button {
  background-color: var(--secondary);
  color: var(--text-dark);
  padding: 20px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition); 
  
}

header a.button:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: scale(1.05);
}

/* ------------------------------
   🏡 SECTIONS
------------------------------ */
section {
  padding: 60px 10%;
  animation: fadeInDown 1.5s ease;
}

section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  position: relative;
  animation: fadeInDown 1.5s ease;
}
section p {
  animation:fadeInDown 1,5s ease;
  font-size: 24px;
  font-family: Arial, sans-serif;
  font-style: italic;
}
section ul {
  text-align: left;
  font-size: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
main {
  animation: fadeInDown 1,5s ease;
}


/* ------------------------------
   🛏️ CHAMBRES
------------------------------ */

.room {
  background: rgb(52, 210, 194);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}


.room img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.room:hover img {
  filter: brightness(0.8);
}



/* ------------------------------
   ✨ ANIMATIONS
------------------------------ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------
   📞 PIED DE PAGE
------------------------------ */
footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9rem;
  animation: fadeInDown 1.5s ease;
}
