/* ============================================
   MONLIS Website - Service Page Hero
   Full-screen hero with service info
   Figma node: 18:3729
   ============================================ */

/* ==========================================
   HERO CONTAINER
   Height: 1203px (desktop)
   ========================================== */
.service-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

/* ==========================================
   BACKGROUND
   ========================================== */
.service-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

/* ==========================================
   CONTENT
   Centered content with service info
   ========================================== */
.service-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 764px;
  padding: 0 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ==========================================
   SUBTITLE
   "Premium Service München"
   Figma: Montserrat Medium 12px, tracking 3px
   ========================================== */
.service-hero__subtitle {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 42px;
}

/* ==========================================
   MAIN TITLE
   "MANIKÜRE"
   Figma: Montserrat Bold 96px, tracking -3px
   ========================================== */
.service-hero__title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 96px;
  line-height: 120px;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 8px;
}

/* ==========================================
   LOCATION
   "Goetheplatz"
   Figma: Montserrat SemiBold 42px, tracking 1px
   ========================================== */
.service-hero__location {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 42px;
  line-height: 52.5px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 52px;
}

/* ==========================================
   DIVIDER
   Figma: rgba(255,255,255,0.4)
   ========================================== */
.service-hero__divider {
  width: 96px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 44px;
}

/* ==========================================
   DESCRIPTION
   Figma: Montserrat Regular 18px, line-height 32.4px
   ========================================== */
.service-hero__description {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 18px;
  line-height: 32.4px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 690px;
  margin-bottom: 77px;
}

/* ==========================================
   STATS
   Duration, Price, Rating
   Figma: gap 48px between items
   ========================================== */
.service-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}

.service-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0;
  position: relative;
}

.service-hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 0;
  width: 1px;
  height: 76px;
  background-color: rgba(255, 255, 255, 0.2);
}

.service-hero__stat-value {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  color: var(--color-white);
}

.service-hero__stat-label {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   CTA BUTTONS
   Figma: Primary white, Secondary transparent with border
   ========================================== */
.service-hero__cta-wrapper {
  display: flex;
  gap: 16px;
}

.service-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 61.5px;
  padding: 0 40px;
  border-radius: 9999px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.service-hero__cta--primary {
  min-width: 200px;
  background-color: var(--color-white);
  color: #232323;
  border: none;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.service-hero__cta--primary:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.service-hero__cta--secondary {
  min-width: 237px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-hero__cta--secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   SCROLL INDICATOR
   ========================================== */
.service-hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

/* Hide scroll on screens with low height (e.g. 1440x900) */
@media (max-height: 900px) {
  .service-hero__scroll {
    display: none;
  }
}

.service-hero__scroll-text {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.service-hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
  .service-hero__title {
    font-size: 72px;
    line-height: 90px;
    letter-spacing: -2px;
  }
  
  .service-hero__location {
    font-size: 34px;
    line-height: 44px;
  }
}

@media (max-width: 1024px) {
  .service-hero {
    min-height: 700px;
  }
  
  .service-hero__title {
    font-size: 56px;
    line-height: 64px;
  }
  
  .service-hero__location {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 32px;
  }
  
  .service-hero__stat {
    padding: 0 32px;
  }
  
  .service-hero__stat-value {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 600px;
  }
  
  .service-hero__subtitle {
    font-size: 10px;
    letter-spacing: 2px;
  }
  
  .service-hero__title {
    font-size: 48px;
    line-height: 56px;
  }
  
  .service-hero__location {
    font-size: 22px;
    line-height: 32px;
  }
  
  .service-hero__description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .service-hero__stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .service-hero__stat {
    padding: 0;
  }
  
  .service-hero__stat:not(:last-child)::after {
    display: none;
  }
  
  .service-hero__cta-wrapper {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  
  .service-hero__cta {
    width: 100%;
    height: 52px;
    font-size: 12px;
  }
  
  .service-hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .service-hero__title {
    font-size: 36px;
    line-height: 44px;
  }
  
  .service-hero__location {
    font-size: 18px;
    line-height: 26px;
  }
  
  .service-hero__stat-value {
    font-size: 24px;
    line-height: 32px;
  }
}
