/* =============== GLOBAL =============== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;   /* bold, serious look */
    color: #000;
    background: #fff;
    text-transform: uppercase;               /* all caps everywhere */
    letter-spacing: 0.05em;
}

/* =============== NAVIGATION =============== */
.top-nav {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 0.25rem 0.5rem; /* reduced padding = less gap above image */
}

.top-nav a {
    text-decoration: none;
    color: inherit;
    display: block;
    margin: 0.25rem 0;
    font-size: 0.95rem;
    transition: opacity 0.2s linear;
}

.top-nav a:hover,
.top-nav a:focus {
    opacity: 0.55;
}

/* Social‑media column */
.social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =============== HERO IMAGE =============== */
.hero-image {
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    margin: 0 auto;          /* virtually no gap between nav and image */
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =============== FOOTER =============== */
footer {
    text-align: center;
    margin: 1.25rem 0 0.5rem;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.75;
}

/* =============== OPTIONAL LARGE‑SCREEN TWEAKS =============== */
@media (min-width: 768px) {
    .hero-image {
        max-width: 600px;
    }

    .top-nav a {
        font-size: 1.05rem;
    }
}