/* Mobile adjustments */

/* Background shift for smaller screens */
@media (max-width: 768px) {
    body.site-bg::before {
        background-position: center 5%;
    }
}

/* Tablet */
@media(max-width:1024px){
    .hero-text h1 { font-size:2.5rem; }
    .hero-text p { font-size:1.4rem; }
}

/* Mobile */
@media(max-width:768px){
    .nav-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
    .nav-center {
        order: 2;
        margin: 0.5rem 0;
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
    }
    .nav-phone {
        order: 3;
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }
    .logo img { height: 80px; }
    .hero-text h1 { font-size:2rem; }
    .hero-text p { font-size:1.2rem; }
    .about-content p { font-size:1rem; }
    .program-cards { flex-direction: column; align-items: center; }
    .card { width: 90%; }
    .about-content form, .application-form {
        width: 90%;
        padding: 1.5rem;
    }
}
