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

.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Custom transitions for header */
.header-glass {
    backdrop-filter: blur(10px);
    background-color: rgba(250, 250, 249, 0.8); /* stone-50 with opacity */
    border-bottom: 1px solid rgba(231, 229, 228, 0.5); /* stone-200 with opacity */
}

/* Minimal hover underline for nav */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: #b45309; /* amber-700 */
    transition: all 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}
