/*position: fixed; General Section Styling */
.hotels-section, #hotel-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 64px;
  padding: 20px;
  transition: opacity 0.1s ease-in-out;
  padding-bottom: 64px;
}

#hotel-rooms {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

#hotel-rooms {
  width: 100%;
  padding: 32px 64px;
  padding-bottom: 64px; 
}

/* Individual Hotel Card */
.hotel-card, .room-card {
  background-color: var(--base);
  border-radius: var(--container-border-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hotel-card {
  cursor: pointer;
}

.hotel-card:hover, .room-card:hover {
  transform: translateY(-5px);
}

#hotel-title {
  width: 100%;
  text-align: center;
  font-size: 2em !important;
  margin-top: 24px;
}

/* Hotel Image */
.hotel-image, .room-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Hotel Info */
.hotel-info, .room-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px;
  text-align: left;
  flex: 1
}

.hotel-name, .room-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0 5px;
  color: var(--contrast);
}

.hotel-price {
  font-size: 1rem;
  color: var(--contrast);
  margin: 5px 0 15px;
  flex: 1;
}

#hotel-description {
  padding: 0px 64px;
  text-align: justify;
}

/* Book Now Button */
.book-now-hotel {
  display: inline-flex;
  gap: 5px;
  background-color: transparent;
  text-align: left;
  color: var(--primary-color);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-end;
}

.book-now-hotel i {
  transition: transform 0.3s ease;
}

.book-now-hotel:hover i {
  transform: translateX(10px);
}

#dripping-snow {
  width: 100%;
}

.room-info p {
  flex: 1;
}

.room-card .add-to-cart-btn, #checkout-btn, .btn-confirm {
  background-color: var(--primary-color);
  border-radius: var(--button-border-radius);
  border: none;
  color: var(--base);
  padding: 8px 16px;
  align-self: flex-end;
  cursor: pointer;
}

.quantity-btn {
  background-color: var(--primary-color);
  border-radius: var(--button-border-radius);
  border: none;
  color: var(--base);
  font-size: 1.5em;
  height: 35px;
  width: 35px;
}

.quantity-display {
  padding: 16px;
}

.action-div {
  align-self: flex-end;
}

.hotel-card.selected .hotel-info {
  background-color: rgba(160, 90, 186, 0.3);
}

