/* =========================================================
   VASARUMA — ABOUT PAGE STYLES (about.css)
   File terpisah khusus halaman /about.
   Navbar, drawer, footer TETAP memakai css/style.css (tidak diubah).
   ========================================================= */

/* ===== BREADCRUMB ===== */
.a-breadcrumb {
  padding: 14px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.a-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.a-breadcrumb a { color: var(--muted); text-decoration: none; }
.a-breadcrumb a:hover { color: var(--navy); }
.a-breadcrumb li[aria-current="page"] { color: var(--navy); font-weight: 600; }
.a-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: rgba(0,61,102,0.3);
}

/* ===== PAGE HERO ===== */
.about-hero {
  padding: 40px 20px 32px;
  background: linear-gradient(160deg, var(--navy) 0%, #002944 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(244,180,88,0.18), transparent 55%);
  pointer-events: none;
}
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,180,88,0.15);
  color: var(--gold);
  border: 1px solid rgba(244,180,88,0.35);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  position: relative;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 6.5vw, 38px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
.about-hero h1 em { font-style: italic; color: var(--gold); }
.about-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

/* ===== PROFIL PERUSAHAAN ===== */
.profile-section { padding: 40px 20px; background: #fff; }
.profile-text p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.profile-text p:last-child { margin-bottom: 0; }

/* ===== PROFILE STATS ===== */
.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.profile-stat {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 16px 10px;
  text-align: center;
}
.profile-stat .num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  display: block;
}
.profile-stat .lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  display: block;
}

/* ===== VISI & MISI ===== */
.visimisi-section { padding: 40px 20px; background: var(--cream); }
.visimisi-grid { display: flex; flex-direction: column; gap: 16px; }
.visi-card, .misi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}
.visi-card { border-left: 4px solid var(--gold); }
.misi-card { border-left: 4px solid var(--navy); }
.visimisi-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 12px;
}
.visi-card h3, .misi-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}
.visi-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.misi-list { list-style: none; }
.misi-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 11px;
}
.misi-list li:last-child { margin-bottom: 0; }
.misi-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 12px; }

/* ===== RESPONSIVE (tablet+) ===== */
@media (min-width: 720px) {
  .profile-stats { grid-template-columns: repeat(4, 1fr); }
  .visimisi-grid { flex-direction: row; }
  .visi-card, .misi-card { flex: 1; }
  .about-hero, .profile-section, .visimisi-section, .a-breadcrumb {
    padding-left: 40px;
    padding-right: 40px;
  }
}
