/* =========================================
   Responsive Design
   ========================================= */

@media (max-width: 900px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .description {
        margin: 0 auto 30px;
    }

    .hero-btns,
    .social-links {
        justify-content: center;
    }

    .img-wrapper {
        width: 250px;
        height: 250px;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background: var(--nav-bg);
        flex-direction: column;
        width: 100%;
        padding: 50px 0;
        transition: 0.4s ease;
        border-top: 1px solid var(--border-color);
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
    }

    .title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .img-wrapper {
        width: 200px;
        height: 200px;
    }
}