body {
    margin: 0;
}

h1 {
    font-family: "FF Unit Slab Pro Black";
    font-style: normal;
    font-weight: 400;
    font-size: 3.2rem;
}

h2 {
    font-family: "FF Unit Slab Pro Black";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    margin: 0;
}

p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
}

.section {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100vw;
    border-top: black solid 1px;
    box-sizing: border-box;
}

.margin_ {
    margin-left: 30px;
    margin-right: 10px;
}

.left-large {
    width: 50vw;
    height: 100vh;
    border: none;
    box-sizing: border-box;
    overflow: auto;
    padding: 0;
}

.right-small-wrapper {
    display: grid;
    grid-template-columns: 25vw 25vw;
    grid-template-rows: 50vh 50vh;
    width: 50vw;
    height: 100vh;
    box-sizing: border-box;
}

.small-box {
    width: 25vw;
    height: 50vh;
    border: nonel;
    border-top: solid black 1px;
    border-left: solid black 1px;
    box-sizing: border-box;
    overflow: auto;
    padding: 30px 20px 0 20px;
}

.editorial {
    color: black;
}

.commercial {
    color: whitesmoke;
    text-align: center;
    width: auto;
    min-height: 300px;
    height: auto;
    background-color: #330033;
    margin: 10px;
    border-radius: 15px;
}

    .small-box.commercial {
    padding-top: 100px;
}


.banner {
    max-width: 100%;
}

.editorial_image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}

/* Landscape styles - applied via JavaScript */
.landscape-mode .left-para {
    column-count: 2;
    column-gap: 2rem;
}
/* Portrait styles - applied via JavaScript */

@media (orientation: portrait) {
    .section {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .left-large,
    .small-box {
        width: 100%;
        height: auto;
    }
    .commercial {
        width: auto;
    }
    

    .right-small-wrapper {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        width: 100%;
        height: auto;
    }
}



/*MENU CSS*/
#top-container {
    border-bottom: none;
    background-color: white;
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#nameplate {
    height: 45px;
    cursor: pointer;
    position: fixed;
    left: 10px;
    top: 3px;
}

#menu-modal {
    height: 100vh;
    width: 700px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    z-index: 101;
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
}

#menu-dots {
    height: 30px;
    top: 10px;
    left: 50%; /* Starts positioning at the center of the viewport */
    transform: translateX(340px);
    position: fixed;
    cursor: pointer;
}

#menu-close {
    top: 20px;
    left: 50%; /* Starts positioning at the center of the viewport */
    transform: translateX(320px);
    position: fixed;
    cursor: pointer;
}

.menu-buttons {
    color: black;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-weight: 400;
    text-decoration: none;
}

.menu-buttons:hover {
    color: blue;
    font-family: "Poppins", sans-serif;
    text-rendering: optimizeLegibility;
    font-style: normal;
    font-weight: 400;
    text-decoration-color: blue;
    text-underline-offset: 4px;
    text-decoration-thickness: 5px;
}

.blur {
    filter: blur(5px);
    transition: filter 0.3s ease; /* Smooth transition */
}
