/* style.css */

/* Custom Scrollbar for a premium look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0F172A; /* Navy */
}
::-webkit-scrollbar-thumb {
    background: #D4AF37; /* Gold */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B8860B; /* Dark Gold */
}

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

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

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes float-delayed {
    0% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out infinite;
}

/* Header Active States */
.active-nav {
    color: #D4AF37;
    position: relative;
}
.active-nav::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #D4AF37;
    border-radius: 2px;
}

/* Header Scroll Class applied via JS */
.header-scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Swiper Pagination Overrides */
.swiper-pagination-bullet {
    background-color: #D4AF37 !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Form inputs remove autofill background */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #1E293B;
  -webkit-box-shadow: 0 0 0px 1000px #FAF9F6 inset;
  transition: background-color 5000s ease-in-out 0s;
}