/* Responsive Styles */

@media (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        /* Hide nav on mobile, will implement hamburger later if needed or simple stack */
    }

    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        cursor: pointer;
        margin-left: auto;
    }

    /* Mobile Menu Styles (Active State) */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        align-items: center;
    }

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}