/* ================= HERO SECTION (IMAGE VERSION) ================= */

.hero {
  min-height: 100vh;
  position: relative;

  display: flex;
  justify-content: flex-start;
  align-items: center;

  padding-top: 110px;
  padding-left: 60px;

  overflow: hidden;
  z-index: 1;

  background: url("/images/about.png") center / cover no-repeat;
}

/* ================= OVERLAY ================= */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(10, 25, 47, 0.55), rgba(10, 25, 47, 0.75));

  z-index: 1;
}

/* ================= CONTENT ================= */

.hero-content {
  position: relative;
  z-index: 5;

  max-width: 1200px;
  width: 100%;

  padding: 0 40px;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ================= BREADCRUMB ================= */

.hero-breadcrumb {
  font-size: 14px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.85);

  margin-bottom: 40px;

  letter-spacing: 0.3px;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;

  transition: 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #facc15;
}

.hero-breadcrumb span {
  margin: 0 6px;
  opacity: 0.7;
}

.hero-breadcrumb .current {
  opacity: 0.8;
}

/* ================= TITLE ================= */

.hero-content h1 {
  font-size: 58px;
  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 18px;

  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================= TEXT ================= */

.hero-content p {
  font-size: 21px;
  line-height: 1.7;

  max-width: 650px;

  margin-bottom: 36px;

  opacity: 0.95;
}

/* ================= BUTTON ================= */

.hero-buttons {
  display: flex;
  gap: 22px;

  flex-wrap: wrap;
}

/* Primary */

.btn-primary {
  background: linear-gradient(135deg, #facc15, #fde047);
  color: #0f172a;

  padding: 14px 32px;
  border-radius: 30px;

  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  box-shadow: 0 6px 18px rgba(250, 204, 21, 0.35);

  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fde047, #facc15);
  transform: translateY(-4px);

  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.45);
}

/* Secondary */

.btn-secondary {
  border: 2px solid #facc15;
  color: #facc15;

  padding: 14px 32px;
  border-radius: 30px;

  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #facc15;
  color: #0f172a;

  transform: translateY(-4px);

  box-shadow: 0 6px 18px rgba(250, 204, 21, 0.35);
}

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

/* Laptop kecil */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 48px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .hero {
    padding-top: 100px;
    padding-left: 30px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    gap: 18px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {
  .hero {
    padding-top: 85px;
    padding-left: 0;

    justify-content: center;
  }

  /* Content center */
  .hero-content {
    align-items: center;
    text-align: center;

    padding: 0 20px;
    max-width: 100%;
  }

  /* Breadcrumb */
  .hero-breadcrumb {
    margin-bottom: 18px;

    font-size: 12px;
    letter-spacing: 0.4px;

    opacity: 0.85;
  }

  .hero-breadcrumb span {
    margin: 0 4px;
  }

  /* Title */
  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;

    margin-bottom: 14px;
  }

  /* Text */
  .hero-content p {
    font-size: 15px;
    line-height: 1.6;

    max-width: 90%;
    margin-bottom: 28px;
  }

  /* Buttons */
  .hero-buttons {
    flex-direction: column;
    align-items: center;

    gap: 14px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 240px;

    font-size: 14px;
    padding: 12px 26px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 420px) {
  .hero {
    padding-top: 75px;
  }

  .hero-breadcrumb {
    font-size: 11.5px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 220px;
    font-size: 13.5px;
  }
}
