/* Mobile-first layout styles */

body {
    margin: 0;
    font-family: 'Merriweather', serif;
    background-color: #fefefe;
}

.banner {
    position: relative;
    width: 100%;
    height: 33vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    /* 👈 Upgraded from max-width to responsive width */
    max-width: 600px;
    /* 👈 Caps on large screens */
    height: auto;
    z-index: 2;
    object-fit: contain;
}

/* Navigation styling */
.nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 12px 0;
    flex-wrap: wrap;
}

.nav-row a {
    color: white;
    text-decoration: none;
    margin: 0 16px;
    font-size: 1rem;
    position: relative;
}

.nav-row a.active::after {
    content: '';
    display: block;
    margin: 4px auto 0;
    width: 60%;
    border-bottom: 2px solid white;
}

/* Responsive tweaks */
@media (min-width: 768px) {
    .nav-row a {
        font-size: 1.2rem;
        margin: 0 24px;
    }

    .logo-overlay {
        width: 40vw;
        max-width: 500px;
    }
}