@import url('https://fonts.googleapis.com/css2?family=Chonburi&family=Lexend+Deca:wght@300;400;500;700&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

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

h1,
h2,
h3,
h4,
h5,
h6,
.serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Utilities */
.nav-pill {
    background-color: rgba(255, 255, 255, 0.85);
    /* Whiter background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border-radius: 9999px;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(255, 255, 255, 0.9);
    }
}