/* ====== Global Typography using Inter ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body, button, input, select, textarea {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #2c3e50; /* dark blue-grey */
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1d3557; /* navy blue */
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

h2, h3 {
    font-weight: 600;
}

a {
    color: #1d3557;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover, a:focus {
    color: #457b9d;
    text-decoration: underline;
}

.btn, .btn-primary, .btn-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #457b9d;
}

.dropdown-menu {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #2c3e50;
}

/* Navbar brand */
.navbar-brand {
    font-weight: 700;
    color: #1d3557 !important;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

/* Navbar toggler */
.navbar-toggler {
    font-weight: 600;
    color: #fff;
    background-color: #1d3557;
    border: none;
}

.navbar-toggler:hover, .navbar-toggler:focus {
    background-color: #457b9d;
    color: #fff;
}

/* Utility font weight classes */
.fw-regular {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* Responsive font sizes */
@media (min-width: 768px) {
    body {
        font-size: 1.05rem;
    }
}

@media (min-width: 1200px) {
    body {
        font-size: 1.1rem;
    }
}

.custom-header {
	background-color: #1a252f !important ;
}


