/* Hero Section */
.hero {
  height: 70vh;
  background: url("../img/image1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-family: Garamond, serif;
  position: relative;
  z-index: 1;
  color: white;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Hotel Section */
.hotel-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

/* Hotel Card */
.hotel-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Image Carousel */
.card-carousel {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.card-carousel img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hotel-card:hover .carousel-control-prev,
.hotel-card:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100%;
  filter: invert(1);
}

/* Card Content */
.card-content {
  padding: 30px;
}

.hotel-name {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #2c2c2c;
  margin-bottom: 20px;
  font-weight: 400;
}

.room-info {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  color: #888;
  font-size: 14px;
}

.room-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-info-item i {
  color: #c9a05f;
  font-size: 16px;
}

.hotel-description {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Book Button */
.book-btn {
  display: inline-block;
  background-color: #c9a05f;
  color: white;
  padding: 12px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #c9a05f;
}

.book-btn:hover {
  background-color: transparent;
  color: #c9a05f;
}

.hotel-text {
  text-align: center;
  margin-top: 3%;
}
/* Responsive */
@media (max-width: 991px) {
  .hotel-name {
    font-size: 24px;
  }

  .card-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .hotel-section {
    padding: 60px 0;
  }

  .hotel-name {
    font-size: 22px;
  }

  .room-info {
    flex-direction: column;
    gap: 10px;
  }

  .card-carousel {
    height: 250px;
  }

  .card-carousel img {
    height: 250px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .hotel-name {
    font-size: 20px;
  }

  .card-content {
    padding: 20px;
  }

  .card-carousel {
    height: 220px;
  }

  .card-carousel img {
    height: 220px;
  }
}
