/* Custom Styles & Overrides */
body {
    font-family: 'Inter', sans-serif;
    color: #1E293B;
}

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

/* Smooth Scroll Padding for Fixed Header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0F766E;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0d5f59;
}

/* Input Autofill Style for Dark Mode (if needed) or just general cleanup */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Image object fit helper */
img {
    max-width: 100%;
    height: auto;
}
