/* Hotels Section Styles */
.hotels {
  padding: 80px 40px;
}

.hotels-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.hotels-header h2 {
  font-size: 2.5rem;
  margin-top: 16px;
}

.hotels-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hotel-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hotel-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 65%;
  overflow: hidden;
}

.hotel-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.price-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #A7988D;
  color: #fff;
  padding: 8px 16px;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-tag span {
  font-size: 0.8rem;
  font-weight: 400;
}

.hotel-info {
  padding: 32px;
  background-color: #1A1A1A;
  color: #fff;
}

.hotel-info h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #fff;
}

.hotel-info p {
  color: #ccc;
  margin-bottom: 24px;
  line-height: 1.7;
}

.features {
  margin-bottom: 32px;
}

.features li {
  margin-bottom: 12px;
  color: #ccc;
  display: flex;
  align-items: center;
}

.features li i {
  color: #A7988D;
  margin-right: 12px;
  font-size: 0.8rem;
}

.book-btn {
  width: 100%;
  padding: 12px 0;
  background-color: #A7988D;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #8A7B71;
}

/* Media Queries */
@media screen and (max-width: 991px) {
  .hotels {
    padding: 64px 40px;
  }
  
  .hotels-header h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .hotels {
    padding: 64px 24px;
  }
  
  .hotels-header {
    margin-bottom: 40px;
  }
  
  .hotels-header h2 {
    font-size: 1.8rem;
  }
  
  .hotel-info {
    padding: 24px;
  }
}