/* Custom utility overrides and animations */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --color-midnight: #0A192F;
    --color-mint: #98FFC6;
    --color-mint-dark: #76EAB0;
    --color-cream: #F8F7F4;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-cream);
    color: var(--color-midnight);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--color-midnight);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-mint-dark);
}

/* Selection Color */
::selection {
    background: var(--color-mint);
    color: var(--color-midnight);
}

/* Mobile Menu Transitions handled in index.html style block */
