/* Section styles */
#rooms {
    padding: 5rem 0;
}

/* Header styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

/* Grid layout */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Room card styles */
.room-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.room-image-container {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

/* Slideshow styles */
.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Slide navigation dots */
.slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

.room-type-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #0d9488;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 9999px;
    z-index: 3;
}

.room-details {
    padding: 1.5rem;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.room-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.room-occupancy {
    color: #4b5563;
}

.price-info {
    text-align: right;
}

.price-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d9488;
}

.price-period {
    font-size: 0.875rem;
    color: #6b7280;
}

.features-container {
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 9999px;
}

/* Button container */
.button-container {
    display: flex;
    gap: 0.75rem;
}

.book-button, .schedule-button {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.book-button {
    background-color: #0d9488;
    color: white;
}

.book-button:hover {
    background-color: #0f766e;
}

.schedule-button {
    background-color: transparent;
    color: #0d9488;
    border: 1px solid #0d9488;
}

.schedule-button:hover {
    background-color: rgba(13, 148, 136, 0.1);
}