@media (min-width: 500px) {
    .mt-mobile-only {
        /* margin-top: 11rem !important; */
        height: 100%;
    }



    /* .macbook-pro .overlap-4 {
        height: 720px;
    }

    .macbook-pro .frame-41 {
        height: 371px;
    } */
}

@media (max-width: 700px) {

    /* .macbook-pro .overlap-4 {
        height: 720px;
    } */

    .macbook-pro .frame-41 {
        height: 371px !important;
    }

    .macbook-pro .frame {
        height: 1500px;
    }

}

/* Base styling for navigation */
.navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Hide navigation by default on mobile */
.navigation-list,
.header-button-text {
    display: none;
}

/* Hamburger Icon Styling */
.hamburger-icon {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Fullscreen Overlay for Mobile Navigation */
.navigation.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffffeb;
    /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

/* Close Button for Mobile Overlay */
.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 49px;
    color: #000000;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

/* Display Navigation List in Overlay */
.navigation.active .navigation-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Fullscreen Button Styling for Mobile */
.navigation.active .header-button-text {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    padding: 10px 20px;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.navigation.active .header-button-text:hover {
    background-color: #ffcc00;
    /* Optional hover effect */
}

/* Navigation List Items with Spacing */
.navigation-list li {
    list-style: none;
    margin: 10px 0;
    /* Space between links */
}

/* Link Styling */
.navigation-list a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.navigation-list a:hover {
    color: #ffcc00;
    /* Optional hover effect */
}

/* Media query for larger screens */
@media (min-width: 992px) {

    .hamburger-icon,
    .close-icon {
        display: none;
    }

    .navigation {
        position: static;
        display: flex;
        justify-content: flex-end;
    }

    .navigation-list,
    .header-button-text {
        display: flex;
        flex-direction: row;
        gap: 15px;
    }
}

.navigation-list,
.header-button-text {
    gap: 30px;
}

.hamburger-icon {
    position: absolute;
    right: 2px;
    top: 13px;
    font-size: 37px;
}

.show {
    display: none;
}