/* Navigation Menu Styles */

.stemabout-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 10%, rgba(12, 74, 101, 1) 90%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stemabout-nav-content {
    max-width: 100%;
    margin: 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo styles */
.stemabout-logo-container {
    margin-left: 60px;
}

.stemabout-logo-link {
    display: inline-block;
}

.stemabout-logo {
    width: 115px;
    height: 25px;
    display: block;
}

/* Navigation menu */
.stemabout-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 60px;
    gap: 30px;
}

.stemabout-nav-menu li {
    margin: 0;
}

.stemabout-nav-link {
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.stemabout-nav-link:hover,
.stemabout-nav-link.stemabout-active {
    color: #d88357;
}

/* Hamburger menu toggle */
.stemabout-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 60px;
}

.stemabout-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.stemabout-menu-toggle.stemabout-active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.stemabout-menu-toggle.stemabout-active span:nth-child(2) {
    opacity: 0;
}

.stemabout-menu-toggle.stemabout-active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile menu styles */
@media (max-width: 1024px) {
    .stemabout-logo-container {
        margin-left: 20px;
    }
    
    .stemabout-menu-toggle {
        display: flex;
        margin-right: 20px;
    }
    
    .stemabout-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 10%, rgba(12, 74, 101, 0.95) 90%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 50px 0;
        gap: 20px;
        transition: left 0.3s ease;
    }
    
    .stemabout-nav-menu.stemabout-active {
        left: 0;
    }
    
    .stemabout-nav-link {
        font-size: 16px;
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .stemabout-nav-container {
        padding: 10px 0;
    }
    
    .stemabout-nav-content {
        padding: 0 15px;
    }
    
    .stemabout-logo-container {
        margin-left: 0;
    }
    
    .stemabout-menu-toggle {
        margin-right: 0;
    }
    
    .stemabout-nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
}