/* ===================================================
   Custom overrides — Tailwind handles everything else
   =================================================== */

/* Georgia font */
body {
    font-family: Georgia, 'Times New Roman', serif;
}

/* Smooth scroll (Tailwind's scroll-smooth class also covers this) */
html {
    scroll-behavior: smooth;
}

/* Navbar shadow lift on scroll (toggled via JS) */
#navbar.scrolled {
    box-shadow: 0 8px 28px rgba(32, 55, 59, 0.2);
}

/* Active nav link highlight */
.nav-link.active {
    color: #20373b; /* primary-800 */
}

/* Lock page scroll while modal is open */
body.modal-open {
    overflow: hidden;
}

