.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url("/img/hotel_1.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding-left: 8%;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-content p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  background: #0d303b;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Playfair Display", serif;
}

.hero-btn:hover {
  background: #14203b;
  transform: translateY(-2px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* ====================================== */

/* --- Resort Section --- */
.resort-section {
  background-color: #ebeeec;
  padding: 50px 0;
  font-family: "Roboto", sans-serif;
}

.resort-content {
  padding: 20px;
  position: relative;
}

.resort-subtitle {
  font-size: 1.2rem;
  color: #2d3b58;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
}

.resort-heading {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  color: #1e2a4c;
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
}

.resort-description {
  font-size: 1.1rem;
  color: #777;
  line-height: 1.6;
  margin-top: 15px;
  font-style: italic;
  font-family: "Playfair Display", serif;
}

.facility-list {
  margin-top: 25px;
}

.facility-item {
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.facility-item i {
  color: #1e2a4c;
  margin-right: 10px;
}

.facility-item span {
  font-style: italic;
  font-family: "Playfair Display", serif;
}

.team-member {
  margin-top: 25px;
  display: flex;
  align-items: center;
}

.team-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.team-info {
  margin-left: 15px;
}

.team-name {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.team-position {
  font-size: 1rem;
  color: #777;
  font-family: "Playfair Display", serif;
}

.btn-outline-primary {
  color: #1e2a4c;
  border-color: #1e2a4c;
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-family: "Playfair Display", serif;
}

.btn-outline-primary:hover {
  background-color: #1e2a4c;
  color: white;
}

.resort-img-left {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  width: 85%;
  height: auto;
  object-fit: cover;
  margin-top: 20px;
  margin-right: 0;
}

@media (max-width: 767px) {
  .resort-heading {
    font-size: 2rem;
  }

  .facility-item {
    font-size: 1rem;
  }

  .team-name {
    font-size: 1.1rem;
  }

  .team-position {
    font-size: 0.95rem;
  }

  .btn-outline-primary {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .resort-img-left {
    margin-right: 0;
  }

  .facility-item {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .team-member {
    margin-top: 20px;
  }

  .team-img {
    width: 60px;
    height: 60px;
  }

  .resort-content {
    padding: 15px;
  }

  .resort-subtitle {
    font-size: 1.1rem;
  }

  .resort-description {
    font-size: 1rem;
  }
}

/* ==================================== */

/* --- Stats Section --- */
.stats-section {
  background-color: transparent;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: #1e2a4c;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1.3rem;
  color: #555;
  font-weight: 500;
  margin-top: 10px;
  font-style: italic;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1.1rem;
  }
}

/* ================================== */

/* --- Featured Hotels --- */
.featured-hotels .card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-hotels .card:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* =================================== */

/* ==== hotel cart ====  */
.hotel-card {
  width: 420px;
  height: 550px;
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s;
  font-family: "Playfair Display", serif;
  margin: 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hotel-img {
  position: relative;
  height: 55%;
  width: 100%;
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  display: block;
}

.hotel-info {
  padding: 20px;
  background: #fff;
  height: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid rgba(0, 0, 0, 0.11);
}

.price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #365140;
  color: #ffffff;
  padding: 10px 14px;
  font-weight: bold;
}

.hotel-info {
  padding: 20px;
  background: #fff;
  height: 50%;
}

.hotel-name {
  font-size: 22px;
  font-weight: bold;
  color: #2d3e50;
  margin-bottom: 10px;
}

.hotel-description {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.read-more {
  display: block;
  cursor: pointer;
  text-decoration: underline;
  color: #000000;
  margin-top: auto;
  text-align: left;
  font-weight: bold;
}

/* ========================= */

/* ===== Rating ==== */
.text-warning {
  font-weight: bold;
  font-size: 1rem;
}

/* ========================= */

.review-item {
  background: #f9f9f9;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.review-item p {
  margin-bottom: 5px;
}

.reviews-count {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.dropdown-toggle {
  font-size: 1rem;
  font-weight: 500;
}

/* --- Search Bar --- */
#reviewSearchInput {
  border-radius: 25px 0 0 25px;
  padding-left: 20px;
}

#searchButton {
  border-radius: 0 25px 25px 0;
  padding: 8px 20px;
}

/* --- Search icon --- */
#searchButton i {
  font-size: 1.2rem;
}

#reviews-container {
  margin-top: 20px;
}

/* --- Modal Header --- */
.modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.modal-body {
  padding: 20px;
}

/* ======================= */

.dark-hover:hover {
  z-index: 1;
  transform: scale(1.01);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
  transition: 0.2s, ease-in-out;
}
