/* Animations */

/* Panel slide-in animation */
.hotel-details-panel {
    transition: right 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hotel-details-panel.open {
    right: 0;
    transform: translateX(0);
}

/* Button hover effect */
.close-btn:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

/* Image hover effect */
.hotel-images img {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hotel-images img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Marker pop-up animation (Leaflet default, but can be customized) */
.leaflet-popup-pane {
    animation: fadeIn 0.3s ease-out;
}

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

/* General fade-in for content */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}