/* General Styling for Room Details Page */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

#main-content-rd .page-title-rd {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: #333; /* Darker color for main titles */
}

#main-content-rd .lead {
    font-size: 1.15rem;
    color: #555;
}

#main-content-rd .section-title-rd {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: #b08d57; /* Gold accent for section titles */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

/* Image Gallery Styling */
.image-gallery-rd .main-room-image-rd {
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.image-gallery-rd .main-room-image-rd:hover {
    transform: scale(1.02);
}

.image-gallery-rd .gallery-thumb-rd {
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.image-gallery-rd .gallery-thumb-rd:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Room Overview Styling */
.room-overview-rd p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #484848;
}

/* Amenities Section Styling */
.amenities-section-rd .amenity-item-rd {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.amenities-section-rd .amenity-item-rd:hover {
    background-color: #f1f1f1;
}

.amenities-section-rd .amenity-item-rd i {
    color: #b08d57; /* Gold icons */
    margin-right: 15px; /* More spacing for icon */
}

.amenities-section-rd .amenity-item-rd p {
    font-size: 0.95rem;
    color: #484848;
    margin-bottom: 0; /* Align text properly with icon */
}

/* Booking Section Styling */
.booking-section-rd {
    background-color: #f8f9fa; /* Light grey background */
    padding: 40px 20px;
    border-radius: 8px;
}

.booking-section-rd .section-title-rd {
    border-bottom: none; /* No border for booking title */
    color: #333;
}

.booking-section-rd .btn-primary {
    /* Using existing .btn-primary styles from main CSS */
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-section-rd .btn-primary i {
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #main-content-rd .page-title-rd {
        font-size: 2.5rem;
    }
    .image-gallery-rd .main-room-image-rd {
        margin-bottom: 20px;
    }
    .amenities-section-rd .col-lg-4 { /* Ensure 2 columns on medium, 1 on small */
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    #main-content-rd .page-title-rd {
        font-size: 2rem;
    }
    .image-gallery-rd .main-room-image-rd {
        margin-bottom: 15px;
    }
    .amenities-section-rd .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}