/* Responsive styles */
.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.mobile-menu li {
    margin: 1rem 0;
}

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .logo img {
        max-height: 40px;
    }

    nav ul {
        display: none !important;
    }

    .mobile-menu-icon {
        display: block;
        margin-left: auto;
    }

    .mobile-menu {
        display: block;
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}