/* Tablet (768px to 1024px) */
@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    main {
        padding: 0 2rem;
    }

    .benefits-grid, 
    .resource-grid, 
    .teacher-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (up to 767px) */
@media screen and (max-width: 767px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

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

    .benefits-grid, 
    .resource-grid, 
    .teacher-grid,
    .stages-grid {
        grid-template-columns: 1fr;
    }

    .search-filters {
        flex-direction: column;
    }

    select {
        width: 100%;
    }

    section {
        padding: 1.5rem 1rem;
    }

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

    .footer-section {
        padding: 1rem 0;
    }
}

/* Small Mobile (up to 480px) */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .nav-logo a {
        font-size: 1.25rem;
    }

    .teacher-card,
    .resource-card,
    .benefit-item {
        padding: 1rem;
    }

    .certification-badge {
        font-size: 0.75rem;
    }

    .profile-link {
        padding: 0.5rem 1rem;
    }
}

/* Print styles */
@media print {
    .nav-container,
    .footer-content,
    .profile-link,
    .mobile-menu-toggle {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        background: white;
    }

    main {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    section {
        break-inside: avoid;
        page-break-inside: avoid;
        border: none;
        box-shadow: none;
    }

    a {
        text-decoration: none;
        color: black;
    }

    .teacher-card,
    .resource-card,
    .benefit-item {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
    }
} 