/* Hero Section Styles */

.hero-section {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  filter: blur(1px);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 6;
  text-align: center;
  color: white;
  width: 100%;
}

.hero-content .container {
  position: relative;
  padding-top: 200px;
  padding-bottom: 280px;
}

.hero-text {
  max-width: 820px;
  margin: 0 auto;
}

.hero-usp {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-text h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.1;
  font-family: 'Fraunces', serif;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 34px;
  font-weight: 300;
  letter-spacing: 0.3px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.btn-hero {
  background-color: white !important;
  color: var(--dark-color) !important;
  padding: 12px 30px !important;
  border-radius: 26px !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0.4px !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero .arrow {
  font-size: 1.4rem;
  line-height: 1;
}

.hero-slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.slider-arrow {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.slider-arrow:hover {
  opacity: 1;
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero-slider-dots .dot {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.hero-slider-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-content {
    width: 100% !important;
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    left: 0 !important;
  }

  .hero-content .container {
    padding-top: 100px !important;
    padding-bottom: 150px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
  }

  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 0 20px !important;
    display: block !important;
  }

  .hero-text h1 {
    font-size: 2.2rem !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-text p {
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }

  .hero-usp {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }

  .btn-hero {
    margin: 0 auto !important;
    display: inline-flex !important;
  }

  .hero-slider-controls {
    bottom: 80px !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 480px !important;
  }

  .hero-text h1 {
    font-size: 1.8rem !important;
  }

  .hero-content .container {
    padding-top: 80px !important;
    padding-bottom: 120px !important;
  }
}
