@font-face {
    font-family: 'Folsom';
    src: url('/fonts/Folsom-Black.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: #000;
    color: #fff;
}

body {
    font-family: 'Folsom', Impact, sans-serif;
    min-height: 100dvh;
}

a {
    color: inherit;
}

/* ── Navbar ── */
.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 24px;
    position: relative;
    z-index: 200;
}

.navbar-brand {
    font-family: 'Folsom', Impact, sans-serif;
    font-size: clamp(14px, 3.2vw, 22px);
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.navbar-brand:hover {
    color: #5ECBA1;
}

.navbar-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: block;
    justify-self: end;
}

/* ── Helpers ── */
.text-green {
    color: #5ECBA1;
}

.hidden {
    display: none;
}

/* ── Footer ── */
.footer {
    text-align: center;
    padding: 16px 20px;
    border-top: 1px solid #333;
    flex-shrink: 0;
}

.footer a {
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    color: #5ECBA1;
}

.footer-sep {
    color: #444;
    font-size: 14px;
    margin: 0 8px;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}

.footer-social a {
    color: #555;
    display: flex;
    align-items: center;
    font-size: 0;
}

.footer-social a:hover {
    color: #5ECBA1;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
