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

main {
    flex: 1;
}

/* HEADER */
.site-header {
    background: var(--primary);
    color: #fff;
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
}

.site-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

/* NAV */
.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-nav a {
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff;
}

.header-nav a:hover {
    background: rgba(255,255,255,0.1);
}

/* FOOTER */
.site-footer {
    background: var(--primary);
    color: #fff;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
}

.footer-info p {
    font-size: 14px;
    color: #e0e0e0;
}

.footer-info a {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

}

.burger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .burger {
        display: block;
    }

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

    .header-nav {

        display: none;

        flex-direction: column;

        width: 100%;

        margin-top: 15px;

        background: rgba(255,255,255,0.05);

        border-radius: 12px;

        overflow: hidden;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav a {

        padding: 15px;

        text-align: center;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .header-nav a:last-child {
        border-bottom: none;
    }

}