/* Menu Overlay Styles */

/* Home Page Styles */
.hero-header {
    display: flex;
    position: absolute;
    top: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 30px;
    z-index: 1000;
    pointer-events: auto;
}

.logo {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.56px;
    line-height: 33.6px;
    color: #fff;
    text-decoration: none;
}

.menu-link {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.56px;
    line-height: 33.6px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.menu-link:hover {
    opacity: 0.8;
}

@media (max-width: 968px) {
    .hero {
        min-height: 450px;
    }

    .logo {
        font-size: 16px;
    }
 
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #EDEDED;
    z-index: 9999;
    display: none;
    overflow: hidden;
}

.menu-overlay.active {
    display: block;
}

.menu-container {
    padding: 20px 30px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 19.5px;
    height: 19.5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10000;
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.close-btn::before {
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

.menu-image-wrapper {
    position: absolute;
    right: 38px;
    bottom: 39px;
    width: 37.67vw;
    height: 434px;
    overflow: hidden;
    object-fit: cover !important;
}

.menu-image {
object-fit: cover !important;
height: 434px;
width: 37.67vw;
}


.menu-overlay nav ul,
.menu-overlay .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-overlay nav ul li,
.menu-overlay .menu-list li {
    margin-bottom: 0px;
}

.menu-overlay nav ul li a,
.menu-overlay .menu-list li a {
    color: #000;
    text-decoration: none;
    font-size: 50px;
    line-height: 73.75px;
    letter-spacing: -0.59px;
    font-weight: 400;
    display: inline-block;
    transition: opacity 0.2s;
}

.menu-overlay nav ul li a:hover,
.menu-overlay .menu-list li a:hover {
    opacity: 0.7;
}

.footer {
    padding: 40px 0px 70px;
    background-color: #ffffff;
    border-top: 1.5px solid #EDEDED;
    overflow: hidden;
    padding-bottom: 0;
}

.footer-content {
    margin: 0 auto;
    max-width: 1928px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 200px;
        padding: 0 50px;
}

.footer-item {
    font-family: "MNKY Banana Grotesk", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: -0.01em;
    color: #B7B6B7;
    text-decoration: none;
}

.footer-logo {
    font-family: "MNKY Banana Grotesk", sans-serif;
    font-weight: 500;
    font-size: 385px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #2D1E1E;
        padding: 0 50px;
    text-align: left;
    margin-left: -35px;
}

@media (min-width: 769px) {
    .menu-image-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 10px 26px;
        background-color: #fafafa;
        border-top: 1.5px solid #EDEDED;
    }

    .footer-links {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 150px; /* Reduced gap before the large logo */
        padding: 0;
    }
    .menu-image-wrapper{
        display: none;
    }
    .footer-item {
        font-family: "MNKY Banana Grotesk", sans-serif;
        font-weight: 500;
        font-size: 12px;
        line-height: 31px;
        letter-spacing: -0.01em;
        color: #B7B6B7;
        text-decoration: none;
        width: auto;
        display: block !important; /* Ensure all items are visible */
    }

    .footer-logo {
        font-family: "MNKY Banana Grotesk", sans-serif;
        font-weight: 500;
        font-size: 100px;
        line-height: 100%;
        letter-spacing: -0.03em;
        color: #2D1E1E;
        text-align: left;
        padding: 0 26px;
    }

    .menu-image-desktop {
        display: none;
    }

    .menu-overlay nav ul li a,
    .menu-overlay .menu-list li a {
        font-size: 24px;
    }
}