
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

:root {
    --primary: #c6dbd5;      /* Mint */
    --secondary: #20373B;    /* Dark Teal */
    --accent: #ffc54f;       /* Gold */
    --complementary: #519cab; /* Blue */
    --neutral: #F0F4F3;
    --pale: #e0ebe9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    color: var(--neutral);
    background-color: var(--secondary);
}

/* Font Families */
.font-condensed { font-family: 'Abril Fatface', cursive; letter-spacing: 0.05em; }
.font-serif { font-family: 'Merriweather', serif; }
.font-script { font-family: 'Abril Fatface', cursive; font-style: italic; }

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--secondary); 
}
::-webkit-scrollbar-thumb {
    background: var(--primary); 
}

/* Glassmorphism Utilities */
.glass-nav {
    background: rgba(32, 55, 59, 0.2); /* Matching Secondary */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(198, 219, 213, 0.1); /* Matching Primary */
}
.glass-nav.scrolled {
    background: rgba(32, 55, 59, 0.95);
    border-bottom: 1px solid rgba(198, 219, 213, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198, 219, 213, 0.1);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Typography Enhancements */
.text-gold-gradient {
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after {
    width: 100%;
}

/* Animations */
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.animate-kenburns {
    animation: kenburns 30s ease-in-out infinite alternate;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Gradients & Overlays */
.bg-gradient-overlay {
    background: linear-gradient(to bottom, rgba(32, 55, 59, 0.3), rgba(32, 55, 59, 0.9));
}
.bg-gradient-dark {
    background: linear-gradient(to right, #20373B, #152528);
}

/* Utility */
.tracking-ultra { letter-spacing: 0.2em; }
.text-shadow { text-shadow: 0 4px 12px rgba(0,0,0,0.4); }


.iti__selected-dial-code{
    color:white !important;
}