/* Volksschule Oberlaa - Responsive Stylesheet */

/* ===== RESPONSIVE DESIGN ===== */

/* Große Desktops und Laptops */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

/* Tablets und kleine Laptops */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .two-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .column {
        width: 100%;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .school-title h1 {
        font-size: 24px;
    }
    
    .school-title h2 {
        font-size: 34px;
    }
}

/* Tablets und große Smartphones */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    #header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
        margin: 10px auto;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

/* Smartphones */
@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .school-title h1 {
        font-size: 20px;
    }
    
    .school-title h2 {
        font-size: 28px;
    }
    
    .logo {
        width: 100px;
    }
}