/* --- Hero --- */
/* Hero занимает весь экран только во время анимации */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 0 0 40px 40px;
    padding: 114px 0 102px;
    z-index: 1;
    transition: width 1s, max-width 1s, min-height 1s, box-shadow 1s, border-radius 1s;
}

.hero.preload-active {
    position: fixed;
    inset: 0;
    border-radius: 0; /* убираем скругления пока анимация */
    z-index: 9999;
}

body.scrolled .hero {
    width: 1368px;
    max-width: calc(100% - 30px);
    min-height: 90vh;
    box-shadow: 8px 8px 40px 0 #26252529;
    margin-top: 25px;
    border-radius: 40px;
}

/* Фон */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.3);
    transition: transform 3000ms cubic-bezier(.22, .9, .28, 1);
    z-index: 1;
}

/* Лого */
.hero-logo {
    position: absolute;
    inset: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 3000ms ease, transform 3000ms cubic-bezier(.22, .9, .28, 1);
    z-index: 3;
}

/* Анимация */
.hero.animate .hero-bg {
    transform: scale(1);
}

.hero.animate .hero-logo {
    opacity: 1;
    transform: scale(1);
}

.hero.logo-hide .hero-logo {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 600ms ease, transform 600ms ease;
}

/* После загрузки контента */
.hero-content {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 800ms ease, transform 800ms ease;
    z-index: 4;
    position: relative;
}

.hero-content.show {
    opacity: 1;
    transform: translateY(0);
}

/* Фоновая картинка (будет масштабироваться) */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.3);
    transition: transform 3000ms cubic-bezier(.22, .9, .28, 1); /* масштаб фона 3с */
    z-index: 1;
}

/* Затемнение поверх фона (опционально) */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Лого, центрированное поверх */
.hero-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(0) scale(0.95);
    transition: opacity 3000ms ease, transform 3000ms cubic-bezier(.22, .9, .28, 1); /* лого 3с */
}

/* Лого — картинка */
.hero-logo img {
    width: 600px;
    max-width: 40vw;
    display: block;
}

/* Содержимое — поверх фона, но под лого (появляется позже) */
.hero-content {
    position: relative;
    z-index: 4;
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 800ms ease, transform 800ms ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Стили видимого контента */
.hero-content.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero.animate .hero-bg {
    transform: scale(1);
}

/* Состояния для активации анимаций (скрипт добавляет класс .animate) */
.hero.animate .hero-logo {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Когда анимация запущена — показываем лого (параллельно уменьшению фона) */
.hero.animate .hero-logo {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Когда нужно скрыть лого (скрипт добавляет .logo-hide) */
.hero.logo-hide .hero-logo {
    opacity: 0;
    transform: translateY(-6px) scale(0.95);
    transition: opacity 600ms ease, transform 600ms ease;
}

/* Немного стилей контента (пример) */
.hero-content .title {
    font-size: 55px;
    color: #fff;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}

.hero-content .subtitle {
    font-size: 24px;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* --- Hero --- */


@media screen and (max-width: 1199px) {
    .hero-content .title {
        font-size: 35px;
        max-width: 765px;
    }

    .hero-content .subtitle {
        font-size: 21px;
    }
}

@media screen and (max-width: 992px) {
    .hero {
        min-height: 85vh;
        padding-bottom: 40px;
        border-radius: 0 0 24px 24px;
    }
}

@media screen and (max-width: 767px) {
    .main-btn {
        font-size: 12px;
        padding: 12px;
    }

    .hero-content .title {
        font-size: 24px;
    }

    .hero-content .subtitle {
        font-size: 16px;
    }
}