/* ==========================================================
   Humble Bee Games
   Layout
   Shared page structure used across the site.
========================================================== */


/* ==========================================================
   Sections
========================================================== */

section {
    padding: clamp(24px, 4vw, 40px) 0;
}


/* ==========================================================
   Header
========================================================== */

header {
    padding: clamp(24px, 4vw, 48px) 0;
    text-align: center;
}


/* ==========================================================
   Large Logo
========================================================== */

.logoBig {
    display: flex;
    justify-content: center;
    align-items: center;

    width: min(92vw, 500px);
    margin-inline: auto;
}

.logoBig img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* ==========================================================
   Top Navigation
========================================================== */

.topbar {
    background: var(--bg);
}

.topbar-inner {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 12px 0;
}

.home-logo {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 96px;
    height: 96px;
}

.home-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ==========================================================
   Footer
========================================================== */

/* ==========================================================
   Footer
========================================================== */

footer {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    text-align: center;
}

.copyright {
    margin: 0;

    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;

    color: var(--muted);

    letter-spacing: 0.02em;
    line-height: 1.5;
}


/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 768px) {

    header {
        padding: 32px 0;
    }

    .home-logo {
        width: 80px;
        height: 80px;
    }

}