/* Responsive Styles */

/* Large Screens (above 1200px) */
@media screen and (min-width: 1201px) {
    .section-content {
        padding: 0 1rem;
    }
}

/* Medium Screens (992px to 1200px) */
@media screen and (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .server-item, .gallery-item {
        min-width: 280px;
    }
}

/* Small Screens (768px to 991px) */
@media screen and (max-width: 991px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-links {
        gap: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .before-after-slider {
        height: 350px;
    }
}

/* Mobile Landscape (576px to 767px) */
@media screen and (max-width: 767px) {
    .navbar {
        padding: 0.7rem 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .logo-container {
        order: 1;
    }
    
    .language-switch {
        order: 2;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .server-showcase, .gallery {
        gap: 1.5rem;
    }
    
    .server-image {
        height: 200px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .before-after-slider {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links, .social-links {
        justify-content: center;
    }
}

/* Mobile Portrait (up to 575px) */
@media screen and (max-width: 575px) {
    .navbar {
        padding: 0.6rem;
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }
    
    .logo {
        height: 30px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-content {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .server-item, .gallery-item {
        min-width: 100%;
    }
    
    .server-image {
        height: 180px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .before-after-slider {
        height: 250px;
    }
    
    .slider-handle::before {
        width: 30px;
        height: 30px;
    }
    
    .contact-form, .contact-info {
        min-width: 100%;
    }
    
    .form-group input, .form-group textarea {
        padding: 0.8rem;
    }
    
    .submit-button {
        width: 100%;
    }
}

/* Very Small Screens (up to 375px) */
@media screen and (max-width: 375px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        font-size: 0.9rem;
        gap: 0.7rem;
    }
    
    .language-switch {
        font-size: 0.9rem;
    }
    
    .server-image, .gallery-item {
        height: 160px;
    }
    
    .before-after-slider {
        height: 200px;
    }
    
    .slider-handle::before {
        width: 25px;
        height: 25px;
    }
}