/* Room Detail Pages CSS */
/* Room Hero Section */
.room-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 60px 40px 40px;
    text-align: left;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Room Details Section */
.room-details {
    padding: 80px 0;
    background: #fafafa;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.details-main {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.room-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
}

.room-price {
    font-size: 2rem;
    font-weight: 600;
    color: #c9a876;
}

.room-price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.room-description {
    margin-bottom: 50px;
    line-height: 1.8;
}

.room-description p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Amenities Section */
.amenities-section {
    margin-bottom: 50px;
}

.amenities-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.amenity-item i {
    font-size: 1.3rem;
    color: #c9a876;
    width: 20px;
    text-align: center;
}

.amenity-item span {
    font-weight: 500;
    color: #2c3e50;
}

/* Room Features */
.room-features {
    margin-bottom: 50px;
}

.room-features h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.room-features ul {
    list-style: none;
    padding: 0;
}

.room-features li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-features strong {
    color: #c9a876;
    font-weight: 600;
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-card,
.room-specs,
.contact-info,
.weather-info,
.wellness-schedule {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-card h3,
.room-specs h3,
.contact-info h3,
.weather-info h3,
.wellness-schedule h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a876;
}

.vip-notice {
    background: linear-gradient(135deg, #c9a876, #b8956a);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.vip-notice i {
    margin-right: 10px;
}

/* Room Specs */
.room-specs ul {
    list-style: none;
    padding: 0;
}

.room-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.room-specs li:last-child {
    border-bottom: none;
}

.room-specs strong {
    color: #2c3e50;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.contact-item i {
    font-size: 1.2rem;
    color: #c9a876;
    width: 20px;
    text-align: center;
}

/* Weather Info */
.weather-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    font-weight: 500;
}

.weather-item i {
    font-size: 1.2rem;
    color: #c9a876;
    width: 20px;
    text-align: center;
}

/* Wellness Schedule */
.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.schedule-item:last-child {
    border-bottom: none;
}

/* VIP Services */
.vip-services {
    margin-bottom: 40px;
}

.vip-services h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.vip-services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.vip-services li {
    background: linear-gradient(135deg, #c9a876, #b8956a);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

/* Wellness Programs */
.wellness-programs {
    margin-bottom: 40px;
}

.wellness-programs h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.program-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #c9a876;
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
}

.program-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.program-item p {
    color: #666;
    line-height: 1.6;
}

/* Activities Section */
.activities-section {
    margin-bottom: 40px;
}

.activities-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.activities-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.activities-section li {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #c9a876;
    font-weight: 500;
    color: #2c3e50;
}

/* Healing Therapies */
.healing-therapies {
    margin-bottom: 40px;
}

.healing-therapies h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.healing-therapies ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.healing-therapies li {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    font-weight: 500;
    color: #2c3e50;
}

/* Related Rooms */
.related-rooms {
    padding: 80px 0;
    background: white;
}

.related-rooms h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-card .card-content {
    padding: 25px;
    text-align: center;
}

.room-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.room-card p {
    color: #c9a876;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.room-card .view-details {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #c9a876, #b8956a);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.room-card .view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 118, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .details-main {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .room-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .slide-content {
        padding: 40px 20px 20px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
    
    .details-main,
    .booking-card,
    .room-specs,
    .contact-info {
        padding: 20px;
    }
    
    .room-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .room-header h2 {
        font-size: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .program-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-services ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .room-hero {
        height: 40vh;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .room-details {
        padding: 40px 0;
    }
    
    .related-rooms {
        padding: 40px 0;
    }
}
