/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1A2F24;
}
::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b5952f;
}

/* Smooth HTML scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background-color: rgba(26, 47, 36, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Image Zoom on hover in cards */
.overflow-hidden img {
    transition: transform 0.8s ease;
}
.overflow-hidden:hover img {
    transform: scale(1.05);
}

/* Swiper custom pagination colors */
.swiper-pagination-bullet-active {
    background-color: #D4AF37 !important;
}
.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.5;
}

/* Form Date Input customization */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.4) sepia(1) saturate(3) hue-rotate(5deg);
}