/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Playfair+Display:wght@400;700&display=swap');

/* Base Font Setup */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Logo Skew (Matching the uploaded logo) */
.logo-skew {
    display: inline-block;
    transform: skewX(-12deg);
    padding-left: 5px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar shadow effect when scrolling */
.nav-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #0056A3;
}