/* Patch 15 — исправление главной и увеличение логотипа */

/* Шапка стала выше, чтобы логотип смотрелся нормально */
.topbar,
.topbar-v3 {
  height: 96px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Логотип крупнее */
.logo-dynamic {
  min-width: 210px !important;
  height: 96px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}

.logo-dynamic img {
  height: 86px !important;
  max-height: 86px !important;
  max-width: 260px !important;
  width: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  transform: scale(1.35);
  transform-origin: left center;
}

/* Главная должна быть широким hero, а не картинкой справа */
.dynamic-hero {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #181a20 !important;
  min-height: 640px !important;
}

/* Слой затемнения на главной поверх всей картинки */
.dynamic-hero::before {
  background: linear-gradient(90deg, rgba(24,26,32,.78), rgba(24,26,32,.45), rgba(24,26,32,.20)) !important;
}

/* Контакты и О компании могут оставаться в мягком режиме, но без съезда */
.dynamic-contacts-hero,
.dynamic-about-hero {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Поиск на главной снова по центру и не уезжает вправо */
.agency-search,
.search-card {
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: auto !important;
  bottom: -55px !important;
}

/* Контент главной снова в нормальной сетке */
.hero-v3-content {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* Из-за высокой шапки мобильное меню ниже */
.nav {
  top: 96px;
}

/* На телефоне логотип не должен ломать шапку */
@media (max-width: 900px) {
  .topbar,
  .topbar-v3 {
    height: 76px !important;
  }

  .logo-dynamic {
    min-width: 150px !important;
    height: 76px !important;
  }

  .logo-dynamic img {
    height: 62px !important;
    max-height: 62px !important;
    max-width: 190px !important;
    transform: scale(1.25);
  }

  .nav {
    top: 76px !important;
  }

  .agency-search,
  .search-card {
    bottom: -125px !important;
  }

  .dynamic-hero {
    min-height: 720px !important;
  }
}

@media (max-width: 560px) {
  .topbar,
  .topbar-v3 {
    height: 70px !important;
  }

  .logo-dynamic {
    min-width: 125px !important;
    height: 70px !important;
  }

  .logo-dynamic img {
    height: 54px !important;
    max-height: 54px !important;
    max-width: 155px !important;
    transform: scale(1.2);
  }

  .nav {
    top: 70px !important;
  }

  .dynamic-hero {
    min-height: 760px !important;
  }

  .agency-search,
  .search-card {
    bottom: -135px !important;
  }
}
