/**
 * Hero Slider Block Styles
 *
 * Full-width hero slider with Swiper navigation and pagination
 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-block {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.hero-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-block .container {
  position: relative;
  z-index: 2;
}

.hero-slider-block {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.hero-slider-block::before {
  display: none;
}
.hero-slider-block .hero-swiper {
  width: 100%;
  height: 100%;
  min-height: 80vh;
}
.hero-slider-block .hero-slide {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
}
.hero-slider-block .hero-slide-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-slider-block .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: #fff;
}
.hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .hero-content .hero-title {
    font-size: 2.5rem;
  }
}
.hero-content .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .hero-content .hero-subtitle {
    font-size: 1rem;
  }
}
.hero-content .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.swiper-slide-active .hero-content .hero-title {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}
.hero-slide.swiper-slide-active .hero-content .hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}
.hero-slide.swiper-slide-active .hero-content .hero-buttons {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-slide {
  transition: transform 0.3s ease-out;
}
.hero-slide.swiper-slide-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: inherit;
  animation: scaleIn 1.2s ease-out forwards;
  z-index: 0;
}
.hero-slide.swiper-slide-active .hero-slide-overlay,
.hero-slide.swiper-slide-active .container {
  position: relative;
  z-index: 1;
}

.hero-slider-block .hero-slider-navigation {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  pointer-events: none;
  z-index: 10;
}
@media (max-width: 768px) {
  .hero-slider-block .hero-slider-navigation {
    bottom: 1rem;
    padding: 0 1rem;
  }
}
.hero-slider-block .hero-slider-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  pointer-events: auto;
}
.hero-slider-block .swiper-button-prev.hero-prev,
.hero-slider-block .swiper-button-next.hero-next {
  position: relative;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 12px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: 0;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0;
}
.hero-slider-block .swiper-button-prev.hero-prev:after,
.hero-slider-block .swiper-button-next.hero-next:after {
  display: none;
}
.hero-slider-block .swiper-button-prev.hero-prev svg,
.hero-slider-block .swiper-button-next.hero-next svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.hero-slider-block .swiper-button-prev.hero-prev:hover, .hero-slider-block .swiper-button-prev.hero-prev:focus,
.hero-slider-block .swiper-button-next.hero-next:hover,
.hero-slider-block .swiper-button-next.hero-next:focus {
  transform: scale(1.05);
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero-slider-block .swiper-button-prev.hero-prev.swiper-button-disabled,
.hero-slider-block .swiper-button-next.hero-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.hero-slider-block .swiper-button-prev.hero-prev.swiper-button-disabled:hover,
.hero-slider-block .swiper-button-next.hero-next.swiper-button-disabled:hover {
  transform: scale(1);
}
@media (max-width: 768px) {
  .hero-slider-block .swiper-button-prev.hero-prev,
  .hero-slider-block .swiper-button-next.hero-next {
    width: 40px;
    height: 40px;
  }
  .hero-slider-block .swiper-button-prev.hero-prev svg,
  .hero-slider-block .swiper-button-next.hero-next svg {
    width: 16px;
    height: 16px;
  }
}
.hero-slider-block .swiper-button-prev.hero-prev svg {
  color: #333;
}
.hero-slider-block .swiper-button-next.hero-next {
  background: rgb(255, 255, 255);
  color: #212529;
}
.hero-slider-block .swiper-button-next.hero-next svg {
  color: #212529;
}
.hero-slider-block .swiper-button-next.hero-next:hover, .hero-slider-block .swiper-button-next.hero-next:focus {
  background: rgb(255, 255, 255);
}
.hero-slider-block .hero-pagination {
  position: relative !important;
  margin-top: 0 !important;
  text-align: center !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  pointer-events: auto;
  left: 0 !important;
  bottom: 0 !important;
}
.hero-slider-block .hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
  border-radius: 50%;
  cursor: pointer;
}
.hero-slider-block .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(255, 255, 255);
  width: 28px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .hero-slider-block .hero-pagination {
    margin-top: 0 !important;
  }
  .hero-slider-block .hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .hero-slider-block .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
  }
}

.hero-slider-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.hero-slider-placeholder p {
  margin: 0;
  color: #6c757d;
  font-size: 1.1rem;
}

/*# sourceMappingURL=style.css.map */
