/* Responsive Design */

/* Small mobile (max 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-text {
        max-width: 95%;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .logo-title {
        font-size: 1.875rem;
    }

    .logo-subtitle {
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-logo-img {
        width: 50%;
        max-width: 28rem;
    }

    .hero-text {
        max-width: 50%;
        margin: 0;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr 1fr;
    }

    .founder-image {
        order: 1;
    }

    .founder-credentials {
        order: 2;
    }

    .community-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop (1024px+) — show phone link with inline nav */
@media (min-width: 1024px) {
    .phone-link {
        display: flex;
    }
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

