/* Global Style Sheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #fff;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #fff;
}

header {
    background-color: #001f3f;
    padding: 15px 60px;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.nav-logo {
    max-width: 60px;
    margin-inline-end: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Abril Fatface', cursive;
    font-size: 28px;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    font-weight: 500;
}

.nav-links li a {
    color: white;
    text-decoration: none;
}

.nav-links li.active,
.nav-links li a:hover {
    text-decoration: underline;
}

footer {
    background-color: #f4f4f4;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}