/**
 * Responsive Design
 * Media Queries für verschiedene Bildschirmgrößen
 */

/* Desktop Large Screens (bis 1200px) */
@media only screen and (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

/* Desktop & Tablet Landscape (bis 992px) */
@media only screen and (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--primary-color);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    
    .nav-menu.show {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .about-image img {
        max-width: 400px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credit {
        margin-top: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .seasonal-badge {
        top: -70px;
        right: 20px;
    }
    
    .accessibility-toggle {
        right: 20px !important;
    }
}

/* Tablet Portrait (bis 768px) */
@media only screen and (max-width: 768px) {
    .main-header {
        padding: 140px 0 60px;
    }
    
    .main-header h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-grid,
    .gallery,
    .usp-grid,
    .prices-grid {
        grid-template-columns: 1fr;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .full-width-image {
        padding: 30px 0;
    }
    
    .full-width-image .feature-image {
        border-width: 3px;
    }
    
    .seasonal-badge {
        top: -55px;
        right: 10px;
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Smartphones (bis 480px) */
@media only screen and (max-width: 480px) {
    .main-header h1 {
        font-size: 1.8rem;
    }
    
    .cta-container {
        flex-direction: column;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .accessibility-toggle {
        top: 10px;
        right: 10px;
    }
    
    #accessibility-toggle-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .full-width-image {
        padding: 20px 0;
    }
    
    .full-width-image .feature-image {
        border-width: 2px;
    }
    
    .seasonal-badge {
        top: -55px;
        right: 10px;
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* Extra Small Smartphones (bis 360px) */
@media only screen and (max-width: 360px) {
    .main-header h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .price-amount .price {
        font-size: 1.6rem;
    }
}
