/* ============================================
   FLOWRISH FOUNDATION - Responsive Styles
   ============================================ */

/* ===== Tablet Styles (768px and below) ===== */
@media screen and (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-md) 0;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        padding: var(--spacing-sm) 0;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: var(--spacing-sm);
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .hero .motto {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Card Grids */
    .card-grid,
    .objectives-grid,
    .team-grid,
    .testimonial-grid,
    .program-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Mobile Styles (480px and below) ===== */
@media screen and (max-width: 480px) {
    /* Spacing */
    section {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    /* Hero */
    .hero {
        padding: var(--spacing-lg) var(--spacing-sm);
        min-height: 400px;
    }

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

    .hero .motto {
        font-size: 1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Logo */
    .logo-text {
        font-size: 1.2rem;
    }

    .logo-container img {
        height: 40px;
    }

    /* Typography */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    /* Cards */
    .card,
    .objective-card,
    .team-card,
    .testimonial-card {
        padding: var(--spacing-sm);
    }

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

/* ===== Large Screens (1200px and above) ===== */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .card-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .objectives-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

