/* Base typography and layout */
body {
    font-family: Poppins,system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #1f2937;
    user-select: none;
    scroll-behavior: smooth;
}

.logo-font {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
.mobile-menu {
            transform: translateY(100%);
            transition: transform 0.3s ease-out;
        }
        
.mobile-menu.open {
            transform: translateY(0);
        }
/* Mobile Menu Styling */
#mobile-menu {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    text-align: center;
}

#mobile-menu .logo-font {
    font-size: 2rem; /* text-3xl */
    line-height: 2.875rem;
    font-weight: 700;
    background: linear-gradient(to right, #4f46e5, #9333ea); /* Indigo to purple */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#mobile-menu a {
    display: block;
    font-size: 2rem; /* text-lg */
    margin-top: 1rem;
    text-decoration: none;
    color: #374151; /* text-gray-700 */
    transition: color 0.2s ease;
    font-weight:normal;
}

#mobile-menu a:hover {
    color: #4f46e5; /* hover:text-indigo-600 */
}

/* Close button */
#close-mobile-menu {
    margin-top: 3rem;
    color: #9ca3af; /* text-gray-500 */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

#close-mobile-menu:hover {
    color: #374151; /* hover:text-gray-700 */
}

/* Make text larger on very small screens */
@media (max-width: 360px) {
    #mobile-menu .logo-font {
        font-size: 1.5rem;
        margin-top: 40px;
    }

    #mobile-menu a {
        font-size: 1rem;
    }
}
