/* =========================================================
   VASARUMA — PRIVACY POLICY PAGE STYLES (privacy-policy.css)
   File terpisah khusus halaman /privacy-policy.
   Navbar, drawer, footer TETAP memakai css/style.css (tidak diubah).
   ========================================================= */

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

/* ===== PAGE HERO ===== */
.pp-hero {
  padding: 36px 20px 30px;
  background: linear-gradient(160deg, var(--navy) 0%, #002944 100%);
  text-align: center;
}
.pp-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;
}
.pp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 6.5vw, 36px);
  color: #fff;
  margin-bottom: 10px;
}
.pp-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  max-width: 460px;
  margin: 0 auto;
}

/* ===== TABLE OF CONTENTS ===== */
.pp-toc {
  margin: 20px 16px;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 18px;
}
.pp-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 10px;
}
.pp-toc ol { list-style: none; counter-reset: ppt; }
.pp-toc li { counter-increment: ppt; margin-bottom: 7px; }
.pp-toc li:last-child { margin-bottom: 0; }
.pp-toc a {
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.pp-toc a::before {
  content: counter(ppt) ". ";
  color: var(--gold);
  font-weight: 700;
}
.pp-toc a:hover { text-decoration: underline; }

/* ===== POLICY BODY ===== */
.pp-body { padding: 8px 20px 36px; }
.pp-section { margin-bottom: 30px; scroll-margin-top: 80px; }
.pp-section:last-child { margin-bottom: 0; }
.pp-section h2 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-section-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-section p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
.pp-section p:last-child { margin-bottom: 0; }
.pp-section ul {
  list-style: none;
  margin-bottom: 10px;
}
.pp-section ul li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.pp-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.pp-section h3 {
  font-size: 14px;
  color: var(--navy);
  margin: 14px 0 6px;
}
.pp-note {
  background: var(--gold-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: #7a520c;
  line-height: 1.6;
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pp-note i { flex-shrink: 0; margin-top: 2px; }
.pp-updated {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 0 20px 20px;
}

/* ===== RESPONSIVE (tablet+) ===== */
@media (min-width: 720px) {
  .pp-hero, .pp-body, .pp-breadcrumb { padding-left: 40px; padding-right: 40px; }
  .pp-toc { margin-left: 40px; margin-right: 40px; }
  .pp-body { max-width: 760px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
}
