/* =========================
   BRAND VARIABLES
========================= */
:root {
  --brand-primary: #0a4dbf;
  --brand-accent: #ffb703;
  --brand-dark: #0b132b;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  color: #fff;
}

/* Slides wrapper */
.hero-slides {
  position: absolute;
  inset: 0;
}

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 120px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* =========================
   BUTTON
========================= */
.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: var(--brand-accent);
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e0a800;
}

/* =========================
   SECTION HEADING
========================= */
h2 {
  color: var(--brand-primary);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero {
    height: 65vh;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
