
:root {
    --primary-color: #484351;
    --secondary-color: #6f6d6d;
    --header-bg-color: #fbefdf;
    --footer-bg-color: #484351;
    --title-font: 'Inter', sans-serif;
    --body-font: 'Inter', sans-serif;
}

body {
    font-family: var(--body-font);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font);
}

.navbar {
    background-color: var(--header-bg-color) !important;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-brand {
    color: #484351 !important;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,0.8);
}

footer {
    background-color: var(--footer-bg-color) !important;
    color: white;
}

footer h5, 
footer p, 
footer .contact-info,
footer .social-icons a {
    color: white;
}

footer .copyright {
    color: rgba(255, 255, 255, 0.9);
}