/* Custom Premium Styles */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a192f;
}

::-webkit-scrollbar-thumb {
    background: #112240;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c5a059;
}

/* Typography Enhancements */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Manrope', sans-serif;
}

/* Hero Section Gradient Overlay */
.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(10, 25, 47, 0.85) 0%,
        rgba(10, 25, 47, 0.6) 50%,
        rgba(10, 25, 47, 1) 100%
    );
}

/* Gold Text Gradient Effect (Optional for very special headers) */
.text-gradient-gold {
    background: linear-gradient(to right, #c5a059, #f0e68c, #c5a059);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Image Hover Effects */
.hover-zoom-img {
    transition: transform 0.5s ease;
}

.group:hover .hover-zoom-img {
    transform: scale(1.05);
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

/* Navbar Scroll State */
.nav-scrolled {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
    height: 80px !important;
}

.nav-scrolled .h-24 {
    height: 80px !important;
}
