/* Animations and Transitions */

/* Close Button Hover Effect */
#close-panel:hover {
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
    color: #ffdddd;
}

/* Photo Gallery Image Hover Effect */
#hotel-photos img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Service Tag Hover Effect */
#hotel-services li:hover {
    background-color: #007BFF;
    color: white;
    transform: translateY(-2px);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

/* Fade-in for Panel Content */
.panel-content h3,
.panel-content p,
#hotel-photos,
#hotel-services,
#hotel-pricing {
    animation: fadeIn 0.5s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for services */
#hotel-services li {
    animation: fadeIn 0.5s ease-in-out forwards;
    opacity: 0;
}

#hotel-detail-panel.show .panel-content h3 { animation-delay: 0.2s; }
#hotel-detail-panel.show .panel-content #hotel-description { animation-delay: 0.3s; }
#hotel-detail-panel.show .panel-content #hotel-photos { animation-delay: 0.4s; }
#hotel-detail-panel.show .panel-content #hotel-services { animation-delay: 0.5s; }
#hotel-detail-panel.show .panel-content #hotel-pricing { animation-delay: 0.6s; }