/* Mobile Header Styles */
.nav-container {
    padding: 15px 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hide mobile nav buttons by default on desktop */
.mobile-nav-buttons {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        padding: 80px 20px;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.3s ease;
        transition-delay: calc(0.1s * var(--i));
    }

    /* Hide desktop nav buttons on mobile */
    .nav-buttons {
        display: none;
    }

    /* Show mobile nav buttons on mobile */
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 100%;
        max-width: 250px;
    }

    .mobile-nav-buttons .try-free,
    .mobile-nav-buttons .login-btn {
        width: 100%;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .mobile-nav-buttons .try-free {
        background: linear-gradient(135deg, #FF4088, #FF7A59);
        color: white;
        border: none;
    }

    .mobile-nav-buttons .try-free:hover {
        transform: translateY(-2px);
    }

    .mobile-nav-buttons .login-btn {
        background: white;
        color: #FF4088;
        border: 2px solid #FF4088;
    }

    .mobile-nav-buttons .login-btn:hover {
        background: rgba(255, 64, 136, 0.1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} 