/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #f9f9f9;
  color: #222;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 40px;
  border-radius: 50px;
  border: 1px solid rgb(148, 105, 32);
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #383838;
}

/*--------*/

.room-cards {
  text-align: center;
  padding: 40px 30px;
  background-color: #fefefe;
}

.section-title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Catchy Mager', serif;
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 10px;
}

.room-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.room-card {
  width: 300px;
  border: 1px solid #ccc;
  padding: 15px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.room-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.room-card .capacity {
  margin: 15px 0 10px;
  font-size: 14px;
  color: #555;
}

.room-card .icons {
  font-size: 18px;
  margin-bottom: 10px;
}

.room-card h3 {
  font-family: 'Coco Gothic', sans-serif;
  font-size: 20px;
  font-weight: 500;
}

/* section de presentation */
.presentation {
  background-color: #f2f2f2;
  padding: 60px 10%;
}

.presentation-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.presentation-left,
.presentation-right {
  flex: 1;
  min-width: 280px;
}

.presentation h2 {
  font-family: 'Catchy Mager', serif;
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #222;
}

.presentation p {
  font-size: 20px;
  line-height: 1.8;
  color: #7e5a38;
}

/* Bouton réserver */
.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: none;
  color: rgb(157, 157, 157);
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #adadadc8;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 0;
  }

  .nav-links a {
    margin-left: 0;
  }
  .contact-columns {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .room-details {
    flex-direction: column;
    padding: 30px 20px;
  }


 

  .presentation-wrapper {
    flex-direction: column;
  }

  .presentation h2 {
    font-size: 20px;
  }
}
