
/* ==================================================
   Mobile Responsiveness (Landing Page)
   ================================================== */
@media (max-width: 768px) {
    /* Navbar Adjustment */
    .navbar {
        padding: 1rem;
    }
    .logo {
        font-size: 1.25rem;
    }
    
    .nav-actions {
        display: none; /* Hide standard nav actions on mobile to simplify; we could put them in a hamburger menu but for landing page simple is better for now */
    }

    #mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-color);
    }

    /* Hero Section Adjustment */
    .hero {
        padding: 6rem 1rem 3rem 1rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem; /* Smaller title on mobile */
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* Feature Grid Adjustment */
    .feature-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    /* Floating Icons Scale Down */
    .floating-icon {
        transform: scale(0.6);
        opacity: 0.15; /* Make less distracting */
    }

    .header-content {
        gap: 1rem;
    }
}

/* Mobile Menu Overlay Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5rem;
    backdrop-filter: blur(10px);
}

.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
}
