nav {
    background: #222;
    color: white;
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 1rem 1.75rem;
    border-radius: 0;
}

header {
    width: 100%;
}

.top-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5% 0;
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

#logopic {
    display: flex;
    max-width: min(72vw, 760px);
    width: 100%;
    height: auto;
}

.workshop-side-image {
    flex: 1 1 0;
    width: 100%;
    max-width: 260px;
    height: 130px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.nav-links {
    margin: auto;
    display: flex;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    transition: background-color 200ms ease, transform 200ms ease;
}

.nav-disabled {
    color: #cfcfcf;
    text-decoration: line-through;
    padding: 0.5rem;
    cursor: not-allowed;
}

.nav-links a:hover {
    background: #444;
    transform: scale(1.07);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .top-banner {
        justify-content: center;
        gap: 0.5rem;
        margin: 2% 0;
        padding: 0 0.5rem;
    }

    .workshop-side-image {
        display: none;
    }

    #logopic {
        max-width: min(70vw, 560px);
    }

    nav {
        padding: 0.75rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.25rem;
        padding: 0.35rem 0.5rem;
    }

    .nav-links a img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        gap: 0.35rem;
        padding: 0 0.5rem;
    }

    .nav-links {
        gap: 0.35rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }
}
