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

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling for Webkit */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #888;
}

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

/* Swiper Fade Transition Override for Smoothness */
.swiper-slide {
    transition: opacity 800ms ease-in-out !important;
}

/* FV Image Animation Removed by user request */
/* .fv-swiper .swiper-slide-active img {
    animation: zoomSlow 8s linear forwards;
} */

/* @keyframes zoomSlow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
} */

/* Section Title Decoration (Simple elegant line) */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8B0000;
    /* brand-red */
    margin-top: 1rem;
}

/* Mobile Menu Transition */
#mobile-menu.open {
    display: flex !important;
    opacity: 1 !important;
}

#scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Fade In Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Luminous Lightbox Customization (Minimal) */
.lum-lightbox {
    background: rgba(0, 0, 0, 0.95);
}

.lum-img {
    box-shadow: none !important;
    border-radius: 0 !important;
}