:root {
    --bg-image: url("zenith_banner.png");
    --accent: #d15639;
    --text: #fff;
    --muted: rgba(255, 255, 255, 0.85);
}

@font-face {
    font-family: Microgramma; /* set name */
    src: url(microgramma_bold.ttf); /* url of the font */
}

@font-face {
    font-family: Futura Book; /* set name */
    src: url(futura_book.ttf); /* url of the font */
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    font-family: "Futura Book", sans-serif;
    background: #111;
    color: var(--text)
}

/* HEADER */
.site-header {
    background: rgba(0, 0, 0, 0.45);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem
}

.logo {
    height: 48px;
    width: auto;
    border-radius: 6px;
    object-fit: cover
}

.site-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted)
}

/* HERO */
.hero {
    min-height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(8, 6, 15, 0.55), rgba(8, 6, 15, 0.55)), var(--bg-image);
    background-size: cover;
    background-position: center;
    padding: 1rem 1rem;
}

.hero-inner {
    padding: 2rem
}

.hero-title {
    margin: 4vh;
    font-family: Microgramma;
    line-height: 10vw;
    font-size: 10vw;
    font-weight: 800;
    letter-spacing: 0.02em
}

.hero-sub {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 3vw;
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #ddd;
    font-size: 1.5vh;
    margin-top: 2rem
}

.footer-top {
    display: grid;
    grid-template-columns:  repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem 1rem
}

.footer-col h3, .footer-col h4 {
    margin-top: 0;
    color: #fff
}

.footer-col p{
    word-wrap: break-word;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-col li {
    margin: .4rem 0
}

.footer-col a {
    color: #ddd;
    text-decoration: none
}

.footer-col a:hover {
    color: var(--accent)
}

hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0
}

.footer-col img {
    max-width: 100%;
    height: 20vh;
    border-radius: 6px;
    object-fit: cover
}

.footer-bottom {
    text-align: center;
    padding: 1rem 1rem 2rem
}

.socials {
    margin-bottom: .75rem
}

.socials a {
    margin: 0 .5rem;
    font-size: 4vh;
    color: #ddd;
    transition: color .2s
}

.socials a:hover {
    color: var(--accent)
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns:1fr;
        text-align: center
    }
}
