/* Custom Styles */

/* Glassmorphism for the hero booking widget */
.glass-panel {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.animation-delay-600 {
    animation-delay: 0.6s;
}

/* Navbar Scrolled State */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    color: #1f2937 !important; /* text-gray-800 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-scrolled a:not(.bg-secondary) {
    color: #1f2937;
}

.navbar-scrolled a:not(.bg-secondary):hover {
    color: #38BDF8; /* text-secondary */
}

/* Text Shadow for links on hero image */
.text-shadow {
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.navbar-scrolled .text-shadow {
    text-shadow: none;
}

/* Date picker styling fix for white bg */
::-webkit-calendar-picker-indicator {
    filter: invert(0);
    cursor: pointer;
}
