@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: black;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: medium;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: regular;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: light;
    font-display: swap;
}



@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter_24pt-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: black;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter_24pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter_24pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: medium;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter_24pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: regular;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter_24pt-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: light;
    font-display: swap;
}



:root {
    --site-light-1: #ffffff;
    --site-light-2: #f5f5f5;
    --site-dark-1: #111111;
    --site-dark-2: #333333;
    --site-accent: #ff3366;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--site-light-1);
    color: var(--site-dark-1);
    font-family: Montserrat, sans-serif;

}

.site-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}





.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--site-dark-1);
    border-bottom: 1px solid var(--site-dark-2);
}

.site-header__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header__mobile-brand,
.site-header__burger {
    display: none;
}

.site-header__center-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.site-header__logo {
    color: var(--site-light-1);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header__logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.site-header__admin {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.site-header__burger {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: transparent;
    color: var(--site-light-1);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: border-color .2s ease, background .2s ease;
}

.site-header__burger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.site-header__burger:hover {
    border-color: var(--site-accent);
    background: rgba(255, 255, 255, 0.06);
}

.site-header.is-menu-open .site-header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-header__burger span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .site-header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav__link {
    color: var(--site-light-2);
    text-decoration: none;
    font-weight: 400;
    white-space: nowrap;
    transition: color .2s ease;
}

.site-nav__link:hover {
    color: var(--site-accent);
}

.site-nav__link--admin {
    color: var(--site-accent);
}






.site-main {
    flex: 1;
}

.site-footer {
    background: var(--site-dark-1);
    color: var(--site-light-1);
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
}



@media (max-width: 768px) {

    .site-header__inner {
        padding: 12px 18px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }

    .site-header__mobile-brand {
        min-width: 0;
        display: flex;
        align-items: center;
    }

    .site-header__mobile-brand .site-header__logo {
        display: inline-flex;
        align-items: center;
        max-width: 100%;
    }

    .site-header__burger {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .site-header__center-nav {
        order: 3;
        width: 100%;
        margin-top: 12px;
        padding: 12px 0 4px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-header.is-menu-open .site-header__center-nav {
        display: flex;
    }

    .site-header__center-nav > .site-header__logo {
        display: none;
    }

    .site-nav__link {
        display: block;
        width: 100%;
        padding: 13px 0;
        font-size: 15px;
    }

    .site-header__admin {
        position: static;
        order: 4;
        width: 100%;
        display: none;
        transform: none;
    }

    .site-header.is-menu-open .site-header__admin {
        display: block;
    }

    .site-header__admin .site-nav__link {
        display: block;
        width: 100%;
        padding: 13px 0;
    }

    .site-header__logo-img {
        max-width: 180px;
        height: 42px;
    }
}
