/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */

body {
    font-family: 'Inter', sans-serif;
    background: #021120;
    overflow-x: hidden;
    overflow-y: auto;
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    left: 0;

    width: 100%;
    height: 110px;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-left: 30px;
    padding-right: 60px;

    background: linear-gradient(
        180deg,
        #041325 0%,
        #02101f 100%
    );

    border-bottom: none;

    transition: all .35s ease;
}

/* SCROLL EFFECT */

.navbar.scrolled {
    height: 80px;

    background: rgba(3, 20, 38, 0.95);
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* LOGO */

.navbar-logo {
    display: flex;
    align-items: center;
    flex: 0 0 340px;
}

.navbar-logo img {
    width: 300px;
    height: auto;
    display: block;

    position: relative;
    top: 6px;
    left: -15px;

    transition: all .35s ease;
}

.navbar.scrolled .navbar-logo img {
    width: 240px;
    top: 2px;
}

/* MENU */

.navbar-menu {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 45px;

    position: relative;
    left: -80px;
}

.navbar-menu a {
    text-decoration: none;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition: all .25s ease;
}

.navbar-menu a:hover {
    color: #8fdcff;
}

.navbar.scrolled .navbar-menu a {
    font-size: 13px;
}

/* BUTTON */

.navbar-button {
    text-decoration: none;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    padding: 18px 36px;

    border-radius: 6px;

    background: linear-gradient(
        180deg,
        #8fdcff 0%,
        #67bdf2 100%
    );

    box-shadow: 0 0 20px rgba(114, 196, 255, 0.25);

    transition: all .25s ease;
}

.navbar-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(114, 196, 255, 0.45);
}

.navbar.scrolled .navbar-button {
    padding: 14px 28px;
}

/* TABLET */

@media (max-width: 1200px) {
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-logo {
        flex: 0 0 250px;
    }

    .navbar-logo img {
        width: 240px;
        left: -5px;
        top: 4px;
    }

    .navbar-menu {
        gap: 22px;
        left: -40px;
    }

    .navbar-menu a {
        font-size: 12px;
    }

    .navbar-button {
        padding: 14px 24px;
    }

    .navbar.scrolled .navbar-logo img {
        width: 210px;
    }
}

/* MOBILE */

@media (max-width: 900px) {
    .navbar {
        height: auto;

        padding-top: 25px;
        padding-bottom: 25px;

        flex-direction: column;
        gap: 25px;
    }

    .navbar-logo {
        flex: initial;
    }

    .navbar-logo img {
        width: 220px;
        left: 0;
        top: 0;
    }

    .navbar-menu {
        left: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .navbar.scrolled {
        height: auto;
    }
}