/* Custom styles beyond Tailwind */
.hero-slider {
    transition: background-image 0.5s ease-in-out;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.modal {
    transition: opacity 0.3s ease;
}
.toast {
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Prevent main content from being hidden under fixed bottom bar on mobile */
@media (max-width: 767px) {
    main.container {
        margin-bottom: 70px; /* Adjust based on bar height */
    }
}