/* Custom animations and overrides not easily handled by Tailwind utilities */

@keyframes ken-burns {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.animate-ken-burns {
    animation: ken-burns 20s ease-in-out infinite alternate;
}

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8982f;
}

/* Navbar active state on scroll */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Mobile Link styling */
.mobile-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-link:last-child {
    border-bottom: none;
}



/* Ensuring map takes full height of its container */
iframe {
    width: 100%;
    height: 100%;
}

/* Swiper Overrides */
.swiper-pagination-bullet {
    background-color: white !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background-color: #D4AF37 !important;
    /* casalot-gold */
    opacity: 1 !important;
}