/* 
 * responsive.css - Responsive Design-Anpassungen
 * LineTrack Website
 */

/* Large Devices (Desktops, weniger als 1200px) */
@media screen and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Medium Devices (Tablets, weniger als 992px) */
@media screen and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .feature-card, .app-card {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Verbindungslinien ausblenden */
    .step:not(:last-child)::after {
        display: none;
    }
}

/* Small Devices (Mobile Landscape, weniger als 768px) */
@media screen and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .header-content {
        position: relative;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-sm);
        padding: 20px;
        z-index: 100;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .nav-link.cta {
        display: inline-block;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        margin-bottom: 40px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .footer-column {
        min-width: 100%;
    }
}

/* Extra Small Devices (Mobile Portrait, weniger als 576px) */
@media screen and (max-width: 575px) {
    .hero {
        padding: 130px 0 80px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .countdown-item {
        margin-bottom: 15px;
        min-width: 70px;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}