/* ================================================================
   HERO SLIDER — hero-slider.css (appended to style.css via JS file)
   ================================================================ */

/* ── Slider container ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--green-dark);
}

/* ── Individual slides ── */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Ken Burns effect on active slide */
.hero-slide.active {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from { background-size: 110%; }
  to   { background-size: 100%; }
}

/* ── Overlay (dark gradient for text readability) ── */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 48, 29, 0.88) 0%,
    rgba(26, 92, 58, 0.62) 45%,
    rgba(8, 35, 18, 0.82) 100%
  );
}

/* ── Slide content ── */
.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 120px;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 100px;
  padding: 7px 20px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  width: fit-content;

  /* Slide-in animation */
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.7s 0.2s ease-out forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 680px;
  opacity: 0;
  transform: translateY(24px);
  animation: slideUp 0.75s 0.35s ease-out forwards;
}

.hero-title span {
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(24px);
  animation: slideUp 0.75s 0.5s ease-out forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  animation: slideUp 0.75s 0.65s ease-out forwards;
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Reset animation for inactive slides */
.hero-slide:not(.active) .hero-eyebrow,
.hero-slide:not(.active) .hero-title,
.hero-slide:not(.active) .hero-subtitle,
.hero-slide:not(.active) .hero-buttons {
  animation: none;
  opacity: 0;
  transform: translateY(20px);
}

/* ── Hero buttons ── */
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  letter-spacing: 0.03em;
}

.btn-primary-hero:hover {
  background: var(--gold-dark, #b8952f);
  border-color: var(--gold-dark, #b8952f);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  letter-spacing: 0.03em;
}

.btn-ghost-hero:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ── Arrow controls ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.slider-arrow--prev { left: 28px; }
.slider-arrow--next { right: 28px; }

/* ── Dot indicators ── */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
  border-color: var(--gold);
}

.slider-dot:hover:not(.active) {
  background: rgba(255,255,255,0.65);
}

/* ── Progress bar ── */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.05s linear;
}

/* ── Scroll indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 68px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 5;
  animation: bounce 2.2s infinite;
}

.hero-scroll-indicator i {
  font-size: 1rem;
}


/* ================================================================
   STATS BAND
   ================================================================ */
.stats-band {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
  z-index: 5;
}

.stats-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 32px 0;
  gap: 16px;
}

.stats-band-item {
  text-align: center;
  padding: 0 24px;
}

.stats-band-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stats-band-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-band-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ================================================================
   ABOUT VISUAL CARDS (right column of about snippet)
   ================================================================ */
.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 20px;
}

.about-visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,92,58,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
}

.about-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.about-visual-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-visual-inner svg {
  flex-shrink: 0;
  color: var(--green-primary);
  width: 32px;
  height: 32px;
}

.about-visual-inner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-visual-inner span {
  font-size: 0.78rem;
  color: var(--text-gray);
}

.about-visual-card--1 { animation-delay: 0.1s; }
.about-visual-card--2 { animation-delay: 0.2s; }
.about-visual-card--3 { animation-delay: 0.3s; }
.about-visual-card--4 { animation-delay: 0.4s; }

.about-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(26,92,58,0.06), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* ================================================================
   ABOUT PILLARS (value tags below text)
   ================================================================ */
.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-muted);
  border: 1px solid rgba(26,92,58,0.15);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-primary);
  transition: all 0.25s ease;
}

.about-pillar:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-1px);
}

.about-pillar:hover .about-pillar-icon svg {
  color: var(--white);
}

.about-pillar-icon svg {
  width: 15px;
  height: 15px;
  color: var(--green-primary);
  transition: color 0.25s ease;
}

/* ================================================================
   MOBILE RESPONSIVE — Slider & Stats Band
   ================================================================ */
@media (max-width: 768px) {
  .slider-arrow { display: none; }

  .slider-dots {
    bottom: 24px;
  }

  .hero-slide-content {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .stats-band-inner {
    gap: 8px;
    padding: 20px 0;
  }

  .stats-band-divider {
    display: none;
  }

  .stats-band-item {
    flex: 0 0 calc(50% - 16px);
    padding: 12px 8px;
  }

  .stats-band-number {
    font-size: 1.75rem;
  }

  .about-visual {
    display: none;
  }

  .hero-scroll-indicator {
    right: 16px;
    bottom: 80px;
  }
}
