/* =========================
   Hero Section (универсальный баннер)
========================= */

/* Основной блок баннера */
.hero-section {
  position: relative;
  height: 350px; /* фиксированная высота */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

/* Фоновое изображение через псевдоэлемент */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0; /* ← строго в границах блока */
  left: 0;
  width: 100%;
  height: 100%; /* ← соответствует высоте блока */
  background-image: url('../../img/iovon_header.jpeg');
  background-size: cover;      /* полностью заполняет блок */
  background-position: center; /* центрируем картинку */
  background-repeat: no-repeat;
  opacity: 0.95;
  z-index: 1;
}

/* Полупрозрачный overlay поверх фона */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Мобильная версия — затемняем сильнее */
@media (max-width: 768px) {
  .hero-section::before {
    opacity: 0.1; /* немного приглушаем фон */
  }
  .hero-section .overlay {
    background-color: rgba(0, 0, 0, 0.25); /* более тёмный слой */
  }
  .hero-section .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  .hero-section .hero-container {
    padding: 0 20px;
    justify-content: center;
  }
  .hero-section .hero-content {
    max-width: 100%;
    text-align: center;
  }
  /* Если решим полностью убрать картинку — просто раскомментировать этот блок */
  .hero-section::before {
    background: #005385;
    opacity: 1;
  }
}

/* Контейнер-центрирующий блок */
.hero-section .hero-container {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Контент с текстом */
.hero-section .hero-content {
  max-width: 400px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}

/* Заголовок */
.hero-section .hero-content h1 {
  font-size: 38px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

/* Подзаголовок */
.hero-section .hero-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 0;
  color: #ffffff;
}