/* Custom styles for index.html */

/* Make calendar icon clickable */
.date-badge {
  cursor: pointer;
  text-decoration: none;
}

/* Updated rooms section to fill entire width */
.rooms-section {
  padding: 5rem 0; /* Remove horizontal padding */
  max-width: 100%; /* Full width */
  margin: 0 auto;
  background: white;
}

/* Make room cards bigger */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Increased from 300px to 400px */
  gap: 2.5rem; /* Increased from 2rem */
  padding: 0 2rem; /* Add padding on the sides */
}

.room-card-image-style {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); /* Enhanced shadow */
  width: 100%; /* Full width instead of fixed 350px */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 25px; /* Increased from 20px */
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card-image-style:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.room-image-carousel {
  position: relative;
  width: 100%;
  height: 300px; /* Increased from 250px */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px; /* Increased from 20px */
}

.room-title-image-style {
  font-size: 1.8em; /* Increased from 1.6em */
  font-weight: bold;
  color: #333;
  margin-bottom: 15px; /* Increased from 10px */
}

.room-description-image-style {
  font-size: 1.1em; /* Increased from 1em */
  color: #777;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
  }
  
  .room-card-image-style {
    padding: 20px;
  }
  
  .room-image-carousel {
    height: 250px;
  }
}