/* ===========================
   Hero - Responsive
=========================== */

@media (max-width: 768px) {

    .hero {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        gap: 2rem;
        padding: 120px 8% 60px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-image img {
        width: 220px;
        height: 220px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }
}
/* ===========================
   Navigation
=========================== */

@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
        flex-direction: column;
    }

    .nav-menu {
    display: none;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111827;
    padding: 20px 0;
    text-align: center;
    gap: 20px;
}
.navbar {
    position: relative;
}
}
