/* ========================================
   Home Page — css/pages/home.css
   ======================================== */

/* Hero Section */

.hero {
  position: relative;
  background-image: url('../../images/hero-banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 39, 40, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.hero-wordmark {
  font-size: 40px;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-badges {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xl);
}

/* Section Divider */

.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Capabilities Section */

.capabilities {
  background-color: var(--color-white);
}

.capabilities-intro {
  font-size: 18px;
  color: var(--color-dark-gray);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.capabilities-heading {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-near-black);
  margin-bottom: var(--space-md);
  letter-spacing: normal;
  line-height: 1.6;
}

.link-arrow {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-arrow:hover {
  color: var(--color-link-hover);
}

/* ========================================
   Responsive — Tablet (768px)
   ======================================== */

@media (min-width: 768px) {
  .hero-wordmark {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-badges {
    font-size: 14px;
  }

  .section-divider img {
    height: 250px;
  }

  .capabilities-intro {
    font-size: 19px;
  }
}

/* ========================================
   Responsive — Desktop (1024px)
   ======================================== */

@media (min-width: 1024px) {
  .hero {
    min-height: 85vh;
  }

  .hero-wordmark {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-description {
    font-size: 17px;
  }

  .section-divider img {
    height: 300px;
  }

  .capabilities-intro {
    font-size: 20px;
  }
}
