/* Hotels section styles */
.hotels {
  background-color: var(--light-gray);
}

.hotels-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.hotel-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

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

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.hotel-card h3, .hotel-card p, .hotel-card a {
  padding: 0 var(--spacing-md);
}

.hotel-card h3 {
  margin-top: var(--spacing-md);
  color: var(--primary);
}

.hotel-card p {
  margin-bottom: var(--spacing-md);
  font-size: 0.95rem;
}

.hotel-card .btn-tertiary {
  margin: 0 var(--spacing-md) var(--spacing-md);
}

@media (max-width: 1200px) {
  .hotels-container {
    gap: var(--spacing-md);
  }
  
  .hotel-image {
    height: 200px;
  }
}

@media (max-width: 992px) {
  .hotels-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hotel-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .hotels-container {
    grid-template-columns: 1fr;
  }
  
  .hotel-image {
    height: 240px;
  }
}