/* ========================================
   TFAM GLOBAL - RESPONSIVE STYLES
   ======================================== */

/* Tablet - 968px and below */
@media (max-width: 968px) {
    /* Navigation */
    .nav-links {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: var(--charcoal);
        width: 100%;
        text-align: center;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    /* Who We Are */
    .who-content {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Map */
    .world-map {
        height: 450px;
    }

    .pin-popup {
        min-width: 240px;
    }
}

/* Mobile - 640px and below */
@media (max-width: 640px) {
    :root {
        --space-md: 1rem;
        --space-lg: 2rem;
        --space-xl: 3rem;
    }

    /* Hero */
    .hero {
        min-height: 550px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    /* Scripture Refs */
    .scripture-refs {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .scripture-divider {
        display: none;
    }

    /* Cookie Consent */
    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    /* Newsletter */
    .newsletter-modal {
        padding: var(--space-md);
    }

    /* Map */
    .world-map {
        height: 350px;
    }

    .map-pin {
        width: 40px;
        height: 40px;
    }

    .pin-marker {
        width: 24px;
        height: 24px;
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Very Small Mobile - 380px and below */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }
}