body {
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

nav {
    position: relative;
    width: 100%;
    height: 320px;
    margin-top: 30px;
}

p {
    margin: 0;
}

/* SS + T */
.corner {
    position: absolute;
    left: clamp(20px, 8vw, 140px);
    top: 10px;
    text-align: left;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.05;
}

/* SS */
.ss {
    font-style: italic;
    text-decoration: underline;
    display: inline-block;
    padding: 2px 6px;
    line-height: 1;
}

.ss:hover {
    opacity: 0.7;
}

/* T */
.t-letter {
    color: black;
    margin-top: 6px;
    display: inline-block;
    padding: 2px 13px;
    line-height: 1;
}

/* logo */
.brand {
    position: absolute;
    left: 50%;
    top: 48px;
    transform: translateX(-50%);
    font-size: clamp(20px, 2.3vw, 30px);
}

/* logo link */
.brand a {
    background-color: #f3f3f3;
    display: inline-block;
    padding: 4px 8px;
    color: #e53935;
    text-decoration: none;
}

.brand a:hover {
    opacity: 0.7;
}

/* contact */
.contact {
    position: absolute;
    right: clamp(20px, 8vw, 160px);
    top: 53px;
    font-size: clamp(18px, 2vw, 28px);
}

.contact a {
    color: #e53935;
    text-decoration: underline;
}

.contact a:hover {
    opacity: 0.7;
}

/* main spacing instead of fake div */
body::after {
    content: "";
    display: block;
    height: 120px;
}

/* SØREN */
.soren-creative {
    text-align: center;
    margin: 10px auto 25px auto;
    color: black;
    font-size: clamp(28px, 5vw, 50px);
    text-decoration: none;
}

.soren-creative:hover {
    opacity: 0.5;
}

/* shared wrapper */
.soren-creative-wrapper,
.visual-gallery-wrapper {
    text-align: center;
    margin: 20px auto;
}

/* gallery links */
.visual-gallery {
    display: inline-block;
    font-size: clamp(28px, 5vw, 57px);
    color: #e53935;
    text-decoration: none;
}

.visual-gallery:hover {
    opacity: 0.5;
}

/* bottom line */
.directional-line-2 {
    width: min(92%, 1200px);
    height: 2px;
    background-color: #e53935;
    margin: 60px auto 25px auto;
}

/* SS red */
.ss,
.ss:visited,
.ss:active,
.ss:hover {
    color: #e53935;
}

/* responsive tweak */
@media (max-width: 768px) {
    nav {
        height: 110px;
        margin-top: 20px;
    }

    .brand {
        top: 38px;
    }

    .contact {
        top: 42px;
    }
}
@media (max-width: 768px) {
    .mainNav {
        display: none; /* let JS control it */
    }
}
/* ===== OVERLAY BACKDROP ===== */
#mainNav {
    position: fixed;   /* make it full screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.5); /* transparent dark */
    backdrop-filter: blur(8px);

    display: none; /* you already control this with JS */

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

/* links styling */
#mainNav a {
    color: white;
    font-size: 28px;
    text-decoration: none;

    opacity: 0;
    transform: translateY(20px);
}

/* animate when open */
#mainNav.show a {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}



#menuBtn {
    background: none;
    border: none;
    padding: 2px 13px; /* match your .t-letter spacing */
    line-height: 1;
    font-size: clamp(18px, 2vw, 28px);
    color: black;
}

