/* Hotels Grid Section Styles */
.hotels-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.hotels-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}
.hotels-header {
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: center;
}
.hotels-header h2 {
  font-size: 42px;
  line-height: 1.4;
  font-weight: 700;
}
.hotels-header p {
  color: #b3afaf;
}
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.hotel-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 20px 20px #0000000d;
  border-radius: 20px;
  overflow: hidden;
}

.hotel-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

.hotel-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1rem;
}

.hotel-name {
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 8px;
}

.hotel-location {
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 12px;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}

.star-rating {
  display: flex;
  gap: 4px;
}

.star {
  color: #e0e0e0;
  font-size: 18px;
}

.star.filled {
  color: #ffa217;
}

.star.half-filled {
  background: linear-gradient(90deg, #ffa217 50%, #e0e0e0 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hotel-visitors {
  font-size: 12px;
  color: #000000;
}

.hotel-button {
  width: 100%;
  padding: 0.75rem 3rem;
  background-color: #d5dddd;
  border: none;
  border-radius: 30px;
  color: #2f5556;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #2f5556;
  width: fit-content;
  font-weight: 500;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.hotel-button:hover {
  background-color: #fff;
}

/* Mobile Styles */
@media (max-width: 1023px) {
  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hotels-section {
    padding: 30px 0;
  }

  .hotels-container {
    padding: 0 20px;
  }
  .hotels-header h2 {
    font-size: 32px;
  }
  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
