/* Custom CSS Overrides */

:root {
    /* Refined Deep Navy Blue */
    --color-primary: #003366;
    --color-secondary: #1abc9c;
    --color-accent: #e74c3c;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Base Header State (Transparent/Tall) */
.header-base {
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

/* Premium Shadows (ibest style) */
.shadow-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.shadow-card-hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Smooth Transitions */
.transition-all-300 {
    transition: all 0.3s ease-in-out;
}