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

.hotels-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.hotels-title {
  font-size: 42px;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 70px;
  max-width: 450px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.hotel-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hotel-image {
  width: 100%;
  height: 230px;
  border-radius: 10px;
  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;
}

.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: #ffa500;
}

.star.half-filled {
  background: linear-gradient(90deg, #ffa500 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: 12px 24px;
  background: linear-gradient(to right, #505050, #202020);
  border: none;
  border-radius: 14px;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hotel-button:hover {
  opacity: 0.8;
}

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

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

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hotels-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
