.sw-swiper-button-arrow-type2 a{
    display: none !important;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
}

/* Фон */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.tildacdn.com/tild6537-3366-4235-b965-623138646337/rvland-rybolovno-spo.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

/* Затемнение */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 40, 30, 0.55) 0%,
    rgba(10, 25, 18, 0.70) 60%,
    rgba(5, 15, 10, 0.85) 100%
  );
}

/* Контент */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 16px;
}

/* Логотип */
.hero-logo img {
  height: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 8px;
}

/* Заголовок */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  line-height: 1.2;
}

/* Подзаголовок */
.hero-subtitle {
  font-size: clamp(13px, 2vw, 17px);
  font-weight: 300;
  color: #c8a96e;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Иконки */
.hero-icons {
  display: flex;
  gap: clamp(12px, 3vw, 32px);
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-icon-btn:hover {
  transform: translateY(-6px);
}

.icon-circle {
  width: clamp(64px, 10vw, 90px);
  height: clamp(64px, 10vw, 90px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(200, 169, 110, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-icon-btn:hover .icon-circle {
  background: rgba(200, 169, 110, 0.25);
  border-color: #c8a96e;
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3);
}

.icon-circle svg {
  width: 100%;
  height: 100%;
}

.hero-icon-btn span {
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Скролл индикатор */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: fadeUpDown 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #c8a96e);
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  color: #c8a96e;
  text-transform: uppercase;
}

@keyframes fadeUpDown {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* Мобильные */
@media (max-width: 600px) {
  .hero-icons {
    gap: 14px;
  }

  .icon-circle {
    width: 58px;
    height: 58px;
    padding: 12px;
  }

  .hero-icon-btn span {
    font-size: 10px;
  }
}
