/* Responsive Design */

@media (max-width: 768px) {
    nav {
        /* flex-direction: column;  <-- Remove this to keep logo and hamburger in one row */
        padding: 1rem 2rem;
        position: relative;
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide links by default */
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        background-color: var(--card-bg);
        border-top: 1px solid #eee;
        padding-top: 1rem;
        
        /* Absolute positioning for dropdown effect */
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 99;
    }

    .nav-links.active {
        display: flex; /* Show when active */
    }

    .hero h1 {
        font-size: 2rem;
    }
}
