/* =====================================================
   PREMIUM HAIR SALOON
   RESPONSIVE STYLESHEET
===================================================== */

@media (max-width: 1024px) {

    .amenities-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .service-grid,
    .amenities-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 860px) {

    .top-bar {
        display: none;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;

        width: min(320px, 85%);
        height: 100vh;

        background: var(--dark-2);
        border-left: 1px solid var(--border);

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 6px;

        padding: 40px 34px;

        transition: right 0.4s ease;

        z-index: 1200;
    }

    .navbar.show {
        right: 0;
    }

    .nav-link {
        padding: 12px 0;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-whatsapp span {
        display: none;
    }

    .hero {
        min-height: 82vh;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}


@media (max-width: 700px) {

    .service-grid,
    .amenities-grid,
    .gallery-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .page-hero {
        min-height: 260px;
    }

    .contact-form-box {
        padding: 26px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .back-to-top {
        left: 16px;
        bottom: 16px;
    }
}
