/* ========================================
   BASE
   ======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    font-family: 'Inter', sans-serif;
    color: #102A43;
    background: #f7f9fc;
}

img {
    max-width: 100%;
    height: auto;
}


/* ========================================
   CONTAINER
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}


/* ========================================
   HEADER
   ======================================== */

.header {
    background: #102A43;
    padding: 14px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}


/* ========================================
   LOGO
   ======================================== */

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transform-origin: left center;
    transition: transform 0.2s ease;
}
.logo a:hover {
    transform: scale(1.08);
}

.logo img {
    display: block;
    height: 30px;
    width: auto;
}

.logo span {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    display: flex;

    flex-wrap: wrap;
    justify-content: center;

    gap: 4px;
}

.nav a {
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-decoration: none;
       padding: 6px 10px;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.nav a:hover {
    color: #3fa9f5;
}

/* ========================================
   BURGER
   ======================================== */

.burger {
    display: none;

    padding: 4px 8px;

    background: none;
    border: none;

    color: #ffffff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}


/* ========================================
   MAIN
   ======================================== */

.main {
    flex: 1;
    padding-top: 0;
    padding-bottom: 20px;
}


/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #102A43;

    color: #ffffff;

    padding: 25px 0;
}

.footer-content {
    display: flex;
    font-family: 'Manrope', sans-serif;
    flex-wrap: wrap;
    justify-content: center;

    gap: 16px;

    text-align: center;

    font-size: 15px;
}

.footer-content a {
    color: #3fa9f5;

    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}


/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 768px) {

    .burger {
        display: block;
    }

    .nav {
        width: 100%;

        display: none;

        flex-direction: column;

        background: #102A43;

        padding: 10px 0;
    }

    .nav a {
        width: 100%;

        padding: 12px;

        text-align: center;
    }

    .nav.active {
        display: flex;
    }

    .header-inner {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: column;
    }

    .logo span {
        font-size: 18px;
    }

    .logo img {
        height: 30px;
    }
    
}