body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background-color: #f4f4f4;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1d1208;
  padding: 15px 40px;
}

.logo img {
  height: 40px;
  border-radius: 50px;
  border: 1px solid rgb(148, 105, 32);
}

.nav-links a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #e1c089;
}

.chambres-section {
  padding: 60px 10%;
  text-align: center;
  background-color: #f4f4f4;
}

.chambres-section h1 {
  font-family: 'Catchy Mager', serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.filtres {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filtres button {
  padding: 10px 20px;
  border: 1px solid #1d1208;
  background-color: transparent;
  color: #1d1208;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.filtres button:hover {
  background-color: #1d1208;
  color: #fff;
}

/* --- MISE À JOUR DE LA SECTION CHAMBRES --- */
.chambre-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.chambre-card {
  background-color: #f1f1f1;
  width: 280px;
  text-align: center;
  padding-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.chambre-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.details {
  font-size: 12px;
  padding: 8px;
  color: #444;
  border-bottom: 1px solid #ccc;
}

.chambre-card h2 {
  font-family: 'Catchy Mager', serif;
  font-size: 20px;
  margin: 10px 0;
}

.footer-card {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.footer-card span {
  font-size: 14px;
  color: #888;
}

.footer-card a {
  font-size: 22px;
  color: #888;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.footer-card a:hover {
  color: #1d1208;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-links a {
    margin-left: 0;
  }

  .chambre-card {
    width: 100%;
    max-width: 300px;
  }

  .footer-card {
    justify-content: space-between;
    padding: 0 20px;
  }
}

@media (max-width: 375px) {
  .chambre-card {
    width: 100%;
    max-width: 250px;
  }

  .chambre-card img{
    width: 100%;
    height: 150px;
  }

  .chambres-section h1 {
    font-size: 28px;
  }

  .logo img {
    height: 35px;
  }

  .filtres button {
    font-size: 13px;
    padding: 8px 16px;
  }

  .footer-card span {
    font-size: 13px;
  }

  .footer-card a {
    font-size: 20px;
  }
}

@media (max-width: 320px) {
  .chambres-section h1 {
    font-size: 22px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .logo img {
    height: 30px;
  }
}

/*-----*/


