/* Custom Styles */

/* Base overrides */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
}

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

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

::-webkit-scrollbar-thumb {
    background: #8b6f4e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2d5a27;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

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

/* Reveal on Scroll Class (JS triggers this) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Header Scrolled State */
#header.scrolled {
    background-color: #267f83;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #e3e5e7 !important; /* Secondary Green */
    opacity: 1;
    width: 25px;
    border-radius: 5px;
    transition: width 0.3s;
}

.gallery-swiper .swiper-slide {
    transition: transform 0.3s;
}

/* Mobile Menu */
.mobile-link {
    position: relative;
    overflow: hidden;
}

.mobile-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #86efac;
    transition: width 0.3s ease;
}

.mobile-link:hover::after {
    width: 100%;
}

/* Utilities */
.animate-bounce-slow {
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}




.text-head {
    color: #ffff;
}

.text-head:hover {
    color: #a5adb1;
}

.text-footer {
    color: #9CA3AF;
}

.text-footer:hover {
    color: #a4d3e9;
}

.head-book {
    --tw-bg-opacity: 1;
    background-color: #268e94 !important;
}

.head-book:hover {
    background-color: #456669 !important;
}

.text-color {
    color: #268e94;
}

.border-color {
    border-color: #268e94;
}

.enquiry-color {
    background-color: #ffff !important;
}

.enquiry-color:hover {
    background-color: #268e94 !important;
}

.testimonial-bg {
    background-color: #268e94 !important;
}

.text-icon {
    background-color: #1F2937;
}

.text-icon:hover {
    background-color: #456669;
}

.text-para {
    text-align: justify;
}

.text-2xl {
    font-size: 1.4rem;
    line-height: 2rem;
}

.location-font{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}