/* ==================================================
   THEME
================================================== */

:root {

    --header-blue: #05275f;
    --footer-blue: #062454;

    --gold: #d9a900;
    --gold-light: #f5c928;

    --black: #000000;
    --white: #ffffff;

}


/* ==================================================
   RESET
================================================== */

* {
    box-sizing: border-box;
}

html,
body {

    margin: 0;
    padding: 0;

    width: 100%;
    min-height: 100%;

}


body {

    background: #ffffff;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

}


a {

    text-decoration: none;

    color: inherit;

}


button {

    font-family: inherit;

}


/* ==================================================
   CENTER WEBSITE
================================================== */

.site-wrapper {

    width: 100%;

    max-width: 600px;

    margin: 0 auto;

    background: #000000;

    overflow: hidden;

    box-shadow:
        0 0 25px rgba(0, 0, 0, 0.18);

}


/* ==================================================
   HEADER
================================================== */

.site-header {

    width: 100%;

    background:
        var(--header-blue);

    color:
        var(--white);

    border-bottom:
        1px solid
        rgba(255, 215, 0, 0.35);

}


/* ==================================================
   HEADER INNER
================================================== */

.header-inner {

    width: 100%;

    min-height: 68px;

    padding: 10px 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* ==================================================
   LOGO
================================================== */

.site-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 24px;

    font-weight: 700;

}


.site-logo-mark {

    width: 42px;

    height: 42px;

    border-radius: 10px;

    border:
        2px solid
        var(--gold-light);

    background:
        rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    text-align: center;

    line-height: 1.05;

    box-shadow:
        0 0 7px
        rgba(245, 201, 40, 0.20);

}


.site-logo-text {

    color:
        var(--white);

}


.site-logo-text span {

    color:
        var(--gold-light);

}


/* ==================================================
   MENU BUTTON
================================================== */

.menu-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border:
        1px solid
        var(--gold-light);

    background:
        rgba(255, 255, 255, 0.07);

    color:
        var(--white);

    padding: 10px 15px;

    border-radius: 10px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.menu-button:hover {

    background:
        rgba(255, 255, 255, 0.15);

}


.menu-button:active {

    transform:
        scale(0.97);

}


/* ==================================================
   MENU SVG
================================================== */

.menu-svg {

    width: 18px;

    height: 18px;

    display: block;

    color:
        var(--gold-light);

}


/* ==================================================
   NAVIGATION
   WHITE GLASS + BLUR
================================================== */

.main-nav {

    width: 100%;

    background:
        rgba(255, 255, 255, 0.90);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    border-top:
        1px solid
        rgba(255, 255, 255, 0.95);

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.12);

    box-shadow:
        0 4px 15px
        rgba(0, 0, 0, 0.12);

}


/* ==================================================
   NAV INNER
================================================== */

.nav-inner {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-around;

}


/* ==================================================
   NAV LINKS
================================================== */

.nav-link {

    position: relative;

    min-width: 0;

    flex: 1;

    padding: 14px 8px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    color:
        #111111;

    font-size: 15px;

    font-weight: 600;

    transition:
        color 0.2s ease;

}


/* ==================================================
   NAV SVG
================================================== */

.nav-icon {

    width: 17px;

    height: 17px;

    flex:
        0 0 17px;

    display: block;

    color:
        #111111;

    transition:
        color 0.2s ease;

}


/* ==================================================
   HOVER
================================================== */

.nav-link:hover {

    color:
        #b58a00;

}


.nav-link:hover .nav-icon {

    color:
        #b58a00;

}


/* ==================================================
   ACTIVE
================================================== */

.nav-link.active {

    color:
        #b58a00;

}


.nav-link.active .nav-icon {

    color:
        #b58a00;

}


/* ==================================================
   ACTIVE GOLD LINE
================================================== */

.nav-link.active::after {

    content: "";

    position: absolute;

    left: 15%;

    right: 15%;

    bottom: 0;

    height: 3px;

    background:
        var(--gold-light);

    border-radius:
        3px 3px 0 0;

    box-shadow:
        0 0 8px
        rgba(245, 201, 40, 0.70);

}


/* ==================================================
   MAIN CONTENT
================================================== */

main,
.main-content,
.page-content {

    width: 100%;

    background:
        #000000;

    color:
        #ffffff;

}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 601px) {

    body {

        background:
            #ffffff;

    }


    .site-wrapper {

        width: 600px;

        max-width: 600px;

        margin-left: auto;

        margin-right: auto;

    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    body {

        background:
            #000000;

    }


    .site-wrapper {

        width: 100%;

        max-width: 600px;

        margin: 0 auto;

        box-shadow: none;

    }


    /* ==============================================
       HEADER
    ============================================== */

    .header-inner {

        min-height: 60px;

        padding: 8px 10px;

    }


    /* ==============================================
       LOGO
    ============================================== */

    .site-logo {

        font-size: 19px;

        gap: 8px;

    }


    .site-logo-mark {

        width: 38px;

        height: 38px;

        font-size: 10px;

        border-radius: 9px;

    }


    /* ==============================================
       MENU
    ============================================== */

    .menu-button {

        padding:
            8px 11px;

        font-size: 14px;

        border-radius: 9px;

    }


    .menu-svg {

        width: 16px;

        height: 16px;

    }


    /* ==============================================
       NAVIGATION
    ============================================== */

    .nav-link {

        padding:
            11px 5px;

        gap: 4px;

        font-size: 12px;

    }


    .nav-icon {

        width: 15px;

        height: 15px;

        flex-basis: 15px;

    }


    .nav-link.active::after {

        left: 10%;

        right: 10%;

        height: 2px;

    }

}


/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 360px) {

    .site-logo {

        font-size: 17px;

    }


    .site-logo-mark {

        width: 36px;

        height: 36px;

        font-size: 9px;

    }


    .menu-button {

        padding:
            7px 9px;

        font-size: 13px;

    }


    .nav-link {

        font-size: 10px;

        gap: 3px;

        padding-left: 2px;

        padding-right: 2px;

    }


    .nav-icon {

        width: 13px;

        height: 13px;

        flex-basis: 13px;

    }

}