/* ═══════════════════════════════════════════════════════════
   Privacy page — Taz Smash Burgers
   ═══════════════════════════════════════════════════════════ */

/* ── Page wrapper ── */
.privacy-page {
  background: var(--cream);
  color: var(--brown);
  padding: 96px 0 120px;
  min-height: 100vh;
}

/* ── Header block ── */
.privacy-header {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 56px;
  border-bottom: 2px solid var(--red);
}

.privacy-header h1 {
  font-family: var(--font-primary);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  color: var(--red);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.privacy-updated {
  font-family: var(--font-primary);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.7;
  margin: 0;
}

/* ── Sections ── */
.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.privacy-body section {
  scroll-margin-top: 120px;
}

.privacy-body h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  line-height: 1.2;
  color: var(--red);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(96, 32, 23, 0.2);
  text-transform: uppercase;
}

/* ── Paragraphs ── */
.privacy-body p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.75;
  color: var(--brown);
  margin: 0 0 14px;
}

.privacy-body p:last-child {
  margin-bottom: 0;
}

.privacy-body strong {
  color: var(--red);
  font-weight: 700;
}

/* ── Lists με custom red dot ── */
.privacy-body ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.privacy-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
}

.privacy-body ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

/* ── Links ── */
.privacy-body a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: var(--transition);
  word-break: break-word;
}

.privacy-body a:hover {
  color: var(--red-dark);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .privacy-page {
    padding: 64px 0 80px;
  }

  .privacy-header {
    padding-bottom: 24px;
    margin-bottom: 40px;
  }

  .privacy-header h1 {
    font-size: clamp(36px, 9vw, 52px);
  }

  .privacy-body {
    gap: 36px;
  }

  .privacy-body h2 {
    font-size: 22px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .privacy-body p,
  .privacy-body ul li {
    font-size: 15px;
    line-height: 1.7;
  }
}