/* Custom Font Settings */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;400;600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
}

body {
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Fraunces', serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Navbar Glass Effect */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Selection Color */
::selection {
    background-color: #d1fae5;
    color: #064e3b;
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}
