@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

html {
    scroll-behavior: smooth;
} body {
    font-family: 'League Spartan', sans-serif;
    margin: 0;
    line-height: 1.3;
    overflow-x: hidden;
    background-color: #121212;
    color: #E0E0E0;
} .navigation, .title {
    background-color: #F9BB17;
    color: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
} .navigation {
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 10px 50px 8px 50px;
} .title {
    padding: 0px 50px 40px 50px;
} nav {
    margin-top: 10px;
} nav ul {
    display: none;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
} nav ul li a {
    color: #121212;
    text-decoration: none;
    width: 110px;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
} nav ul li a span {
    display: inline-block;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.25s cubic-bezier(0.44, 0.23, 0.2, 0.8),
                color 0.3s ease,
                letter-spacing 0.2s cubic-bezier(0.44, 0.23, 0.2, 0.8),
                font-weight 0.2s cubic-bezier(0.44, 0.23, 0.2, 0.8);
} nav ul li a:hover span {
    cursor: pointer;
    color: #CC5500;
    transform: scale(1.15);
    letter-spacing: 0.5px;
    font-weight: 500;
} .current-page {
    pointer-events: none;
} .current-page span {
    font-weight: 600;
} .navigation p {
    display: none;
} main {
    background-color: #121212;
    color: #E0E0E0;
    padding: 40px 80px 40px 80px;
} hr {
    border: none;
    background-color: #F9BB17;
    height: 3px;
    margin: 0px 0;
} footer {
    background-color: #121212;
    color: #E0E0E0;
    padding: 10px 100px 10px 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
} footer p {
    line-height: 1.2;
    margin: 2px 0;
}

.section-divider {
    height: 60px;
    background: repeating-linear-gradient(
        135deg,
        #F9BB17 0px 10px,
        #121212 10px 20px
    );
    margin: 0 -80px;
} .footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0px;
} .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 0px;
} .footer-left img {
    width: 100px;
    object-fit: contain;
    object-position: top;
} .footer-left-link {
    display: none;
    padding-top: 5px;
} .footer-left-link a {
    font-size: 15px;
    font-weight: 300;
    vertical-align: middle;
    color: #E0E0E0;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
    align-items: flex-start;
} .footer-left-link a:hover {
    color: #F9BB17;
} .footer-right a {
    text-align: right;
    font-size: 15px;
    font-weight: 300;
    vertical-align: middle;
    color: #E0E0E0;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
    align-items: flex-start;
} .footer-right a:hover {
    color: #F9BB17;
}

/* ------------------------------ */
/*         MOBILE LAYOUT          */
/* ------------------------------ */
.menu-icon {
    display: none;
    cursor: pointer;
    user-select: none;
    position: fixed;
} #menu-toggle {
    display: none;
} .navigation #menu-toggle:checked ~ ul {
    transform: scale(1, 1);
}

@media only screen and (max-width: 768px) {
    .navigation {
        display: flex;
        flex-direction: row;
        padding-left: 40px;
    } .title {
        align-items: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    } .menu-icon {
        display: block;
    } nav ul {
        position: fixed;
        top: 60px;
        left: 10px;
        width: 30%;
        background-color: #D3D3D3;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0.25rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        z-index: 2;
        transform: translateY(-10px);
        transition: max-height 0.45s ease,
                    opacity 0.3s ease,
                    transform 0.45s ease;
    } nav ul li {
        text-align: left;
    } nav ul li a {
        justify-content: flex-start;
    } #menu-toggle:checked + .menu-icon + nav ul {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        z-index: 2;
    } .navigation p {
        display: block;
    } main {
        padding-left: 20px;
        padding-right: 20px;
    } footer {
        padding-left: 20px;
        padding-right: 20px;
    } footer > div {
        flex-direction: column;
        text-align: left;
        align-items: center;
    } .footer-left {
        justify-content: center;
        flex-direction: row;
    } .footer-left-link {
        display: block;
    } .footer-right {
        display: none;
    }
}

/* ------------------------------ */
/*         PAGE STYLING           */
/* ------------------------------ */
@view-transition {
    navigation: auto;
} ::-webkit-scrollbar {
    width: 0.5em;
} ::-webkit-scrollbar-track {
    background: #E5D1B1;
} ::-webkit-scrollbar-thumb {
    background: #DF935D;
} ::-webkit-scrollbar-thumb:hover {
    background: #CC5500;
} ::selection {
    color: #CC5500;
    background: #E5D1B1;
}