/* Rooms */

.card-style {
  margin-bottom: 20px;
}

.section-header {
  padding: 60px 0 30px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #9e9e9e;
}
.section-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  color: #9e9e9e;
  position: relative;
  display: inline-block;
  margin-top: 10px;
}
.section-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: #9e9e9e;
}
.view-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #9e9e9e;
  text-decoration: none;
  font-weight: 600;
}
.view-link:hover {
  color: #00c3a5;
}

.room-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.room-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.price-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #777;
  border-radius: 2px;
}
.room-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #9e9e9e;
  text-transform: uppercase;
  margin: 15px 0;
}

.flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
  margin-right: 5px;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotel-room-section {
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  color: #333;
  margin-top: 100px;
}

.hotel-room-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: bold;
}

.hotel-room-divider .line {
  flex: 1;
  height: 1px;
  background-color: #a8896c;
}

.hotel-room-description {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.8;
}

.hotel-check-info .hotel-icon {
  font-size: 20px;
  color: #a8896c;
}

.divider {
  width: 100%;
  height: 1.5px;
  background-color: #e0e0e0;
  margin: 10px auto;
}

.room-description {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
  padding: 0 15px 15px;
  text-align: center;
}
