/* Navigation Styles */

/* Header */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 50px;
    z-index: 100;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 90px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.menu-toggle {
    display: none;
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 15px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 150;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(2) {
    width: 80%;
}

.menu-toggle:hover span {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
        justify-content: flex-end;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links a {
        color: #333;
        font-size: 16px;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:hover {
        opacity: 1;
        color: #666;
    }

    .menu-toggle {
        display: flex;
        position: static;
        transform: none;
        right: auto;
        top: auto;
        z-index: 200;
        width: 25px;
        height: 20px;
    }

    .menu-toggle span {
        height: 3px;
    }

    .menu-toggle span:nth-child(2) {
        width: 80%;
    }
}
