/* Premium Custom Styles */

:root {
    --royal: #002d5f;
    --champagne: #D4AF37;
    --white: #ffffff;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Selection Color */
::selection {
    background-color: var(--champagne);
    color: var(--white);
}

/* Glassmorphism Effect for Navbar on Scroll */
.header-glass {
    background: rgba(0, 45, 95, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Slow Zoom Animation for Hero Image */
@keyframes slowZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.animate-slow-zoom {
    animation: slowZoom 20s infinite ease-in-out;
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--royal);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--champagne);
}

/* Parallax Style Elements */
.bg-fixed-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Underline Animation for Links */
.nav-link-custom {
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--champagne);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
    width: 100%;
}

/* Floating Animation */
@keyframes float {
	0% { transform: translatey(0px); }
	50% { transform: translatey(-15px); }
	100% { transform: translatey(0px); }
}

.animate-float {
	animation: float 4s ease-in-out infinite;
}
