/* =========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================= */

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .navbar .container {
        padding: 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        gap: 40px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 span {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }
}

/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h1 span {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 12px 30px;
    }

    .about, .services, .gallery, .contact {
        padding: 60px 0;
    }

    .about-text h2,
    .services h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* Large Desktops (min-width: 1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-content h1 {
        font-size: 5rem;
    }

    .hero-content h1 span {
        font-size: 6rem;
    }

    .about-content,
    .contact-content {
        gap: 80px;
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}