/* ===========================
   INDEX.CSS — только главная страница
   =========================== */


/* ===========================
   HERO
   =========================== */
.hero {
    position: sticky;
    top: calc(90px - (100vh - 90px));
    z-index: 100;
    background: #4B96FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 90px);
    padding: 90px 20px 40px;
    text-align: center;
}

.hero-label {
    width: 100%;
    max-height: 440px;
    margin-bottom: 60px;
    pointer-events: none;
}

.hero-label-img {
    width: 100%;
    height: auto;
}

.hero-subtitle {
    color: #F5F5F5;
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-subtitle strong {
    font-weight: 700;
}

.hero-cta {
    display: inline-block;
}

.hero-cta .menu-btn-pill {
    padding: 21px;
    font-size: 19px;
    font-weight: 700;
}


/* ===========================
   ГАЛЕРЕЯ
   =========================== */
.gallery {
    background: #F5F5F5;
    padding: 0 60px 92px;
    margin-top: 0;
    
}

.gallery-header {
    margin-bottom: 100px;
    margin-left: -35px;
    padding-top: 30px;
}

.gallery-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #090909;
    margin-bottom: 12px;
}

.gallery-spark {
    width: 25px;
    height: 25px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 150px 30px;
}

.gallery-empty {
    font-size: 16px;
    color: #090909;
    opacity: 0.5;
    text-align: center;
    padding: 60px 0;
    width: 100%;
}

@media (max-height: 875px) {
    .hero {
        position: sticky;
        top: calc(60px - (100vh - 60px));
        z-index: 100;
        background: #4B96FF;
        display: flex;
        flex-direction: column;
        align-items: center;
        
        padding: 30px 0px;
        text-align: center;
    }

    .hero-label {
        /* width: 100%; */
        max-width: 300px;
        margin-bottom: 30px;
        pointer-events: none;
    }
}
/* ===========================
   АДАПТИВ — МОБИЛКА (только главная)
   =========================== */
@media (max-width: 768px) {

    #heroContent{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

     .hero-label {
        /* width: 100%; */
        max-width: 300px;
        margin-bottom: 30px;
        pointer-events: none;
    }
    
    .hero {
        top: calc(60px - (var(--vh, 100vh) - 60px));
        height: calc(var(--vh, 100vh) - 60px);
        padding: 30px 20px 40px;
        transition: none;
    }

    .hero-subtitle {
    color: #F5F5F5;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 30px;
}

    .hero-cta .menu-btn-pill {
        padding: 21px;
        font-size: 19px;
        font-weight: 700;
    }

    .gallery {
        padding: 0 20px 50px;
    }

    .gallery-header {
        margin-left: -10px;
        margin-bottom: 54px;
        padding-top: 20px;
    }

    .gallery-title {
        font-size: 16px;
    }

    .gallery-spark {
        width: 17px;
        height: 17px;
    }

    .gallery-grid {
        gap: 40px 16px;
    }
}