/* =========================
   Hero Section
   ========================= */

.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.78)),
    url("../../images/hero-bg.png");

  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 120px 0;
}

.hero-label {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  margin-bottom: 25px;
}

.hero-text {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.8;
  color: #e8e1d6;
  margin-bottom: 35px;
}

/* =========================
   About Section
   ========================= */

.heritage-card {
  background: linear-gradient(135deg, var(--color-black), var(--color-brown));
  color: var(--color-white);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  box-shadow: 0 25px 70px rgba(17, 17, 17, 0.18);
  position: relative;
  overflow: hidden;
}

.heritage-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background-color: rgba(201, 162, 77, 0.16);
}

.heritage-card h3 {
  color: var(--color-gold);
  font-size: 30px;
  margin-bottom: 20px;
  position: relative;
}

.heritage-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #f0e8dc;
  position: relative;
}

/* =========================
   Feature Cards
   ========================= */

.feature-card {
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid #eee3d2;
  border-radius: 22px;
  padding: 34px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 35px rgba(17, 17, 17, 0.06);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

.feature-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--color-black);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 23px;
  color: var(--color-black);
  margin-bottom: 14px;
}

.feature-card p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================
   Impact Section
   ========================= */

.impact-box {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.impact-box:hover {
  background-color: rgba(201, 162, 77, 0.12);
  transform: translateY(-6px);
}

.impact-box h3 {
  color: var(--color-gold);
  font-size: 22px;
  margin-bottom: 14px;
}

.impact-box p {
  color: #ddd4c8;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================
   Pilot Cards
   ========================= */

.pilot-card {
  height: 100%;
  background-color: var(--color-white);
  border-radius: 22px;
  padding: 34px;
  border-left: 5px solid var(--color-gold);
  box-shadow: 0 12px 35px rgba(17, 17, 17, 0.07);
}

.pilot-card span {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
}

.pilot-card h3 {
  font-size: 24px;
  margin: 16px 0;
  color: var(--color-black);
}

.pilot-card p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================
   Timeline
   ========================= */

.timeline-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 19px;
  width: 2px;
  height: 100%;
  background-color: #e6d6bc;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 28px;
  margin-bottom: 38px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--color-black);
  border: 4px solid var(--color-gold);
  position: relative;
  z-index: 2;
}

.timeline-content {
  background-color: var(--color-cream);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #eadcc5;
  width: 100%;
}

.timeline-content span {
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.timeline-content h3 {
  color: var(--color-black);
  font-size: 24px;
  margin: 10px 0 12px;
}

.timeline-content p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================
   CTA Section
   ========================= */

.cta-section {
  padding: 110px 0;
  background:
    linear-gradient(rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.84)),
    url("../../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 54px);
  max-width: 900px;
  margin: 0 auto 22px;
  color: var(--color-white);
  line-height: 1.2;
}

.cta-section p {
  max-width: 720px;
  margin: 0 auto;
  color: #e3d9cc;
  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   Home Page Responsive
   ========================= */

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 150px 0 100px;
    background-position: center right;
  }

  .heritage-card {
    padding: 38px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 130px 0 80px;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    margin-right: 0 !important;
  }

  .feature-card,
  .pilot-card,
  .impact-box {
    padding: 28px;
  }

  .timeline-wrapper::before {
    left: 15px;
  }

  .timeline-marker {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .timeline-item {
    gap: 20px;
  }

  .timeline-content {
    padding: 24px;
  }

  .cta-section {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .hero-label {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .hero-title {
    letter-spacing: 3px;
  }

  .hero-text,
  .cta-section p {
    font-size: 16px;
  }

  .heritage-card {
    padding: 30px;
  }

  .heritage-card h3 {
    font-size: 25px;
  }

  .feature-card h3,
  .pilot-card h3,
  .timeline-content h3 {
    font-size: 21px;
  }
}
