/* Hotels Section Styles */

.hotels-section {
  background: rgba(0, 0, 0, 0.1);
  padding: 80px 20px;
}

.hotels-section__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin: 0 0 50px;
  text-align: center;
}

/* Hotels Grid */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hotel Card */
.hotel-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Hotel Card Image */
.hotel-card__image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-card__image img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .hotels-section {
    padding: 60px 20px;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hotels-section__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hotels-section {
    padding: 50px 16px;
  }

  .hotels-grid {
    gap: 15px;
  }

  .hotels-section__subtitle {
    font-size: 15px;
    margin-bottom: 25px;
  }
}
