/* 
 * responsive.css - Media queries for responsive design
 */

/* Large Screens */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
}

/* Medium Screens */
@media (max-width: 992px) {
    section {
        padding: 100px 5%;
    }

    .about-content, 
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
        height: 300px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }
}

/* Small Screens / Tablets */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .navbar {
        padding: 15px 20px;
    }

    .navbar.scrolled {
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .services-container {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Screens / Phones */
@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    section {
        padding: 80px 5%;
        min-height: auto;
    }

    .footer {
        padding: 30px 5%;
    }

    .footer-links a {
        margin: 0 10px 10px;
    }
}

/* Extra Extra Small Screens */
@media (max-width: 400px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 20px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.3rem;
    }
}