/* ==================================================
   airecipe.onl — Shared styles for content pages
   (About, Contact, Privacy, Terms, Refund, Disclaimer)
   ================================================== */

:root {
  --primary: #e8481c;
  --primary-dark: #c73a12;
  --dark: #1f1300;
  --cream: #fff7ef;
  --green: #1a8f4c;
  --muted: #6b5d4f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

/* ---------- Animated background blobs ---------- */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  animation: drift 20s ease-in-out infinite;
}
.blob.b1 { width: 300px; height: 300px; background: #ffd0b8; top: -90px; left: -70px; }
.blob.b2 { width: 260px; height: 260px; background: #ffe3a3; top: 45%; right: -90px; animation-delay: 5s; }
.blob.b3 { width: 280px; height: 280px; background: #ffc2ad; bottom: -110px; left: 25%; animation-delay: 10s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(28px, -36px) scale(1.08); }
  66%      { transform: translate(-22px, 22px) scale(0.96); }
}

/* ---------- Header / Nav ---------- */
.site-header {
  padding: 16px 0;
  border-bottom: 1px solid #f0e4d8;
  background: rgba(255, 247, 239, 0.85);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--dark); }
.back-home {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.back-home:hover { text-decoration: underline; }

/* ---------- Page content ---------- */
.page {
  padding: 40px 0 60px;
  animation: fadeUp 0.6s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
}
.page .updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.card {
  background: #fff;
  border: 1px solid #f0e4d8;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 6px 20px rgba(232, 72, 28, 0.05);
}

.page h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 28px 0 10px;
  color: var(--primary-dark);
}
.page h2:first-child { margin-top: 0; }

.page p { margin-bottom: 14px; font-size: 16px; color: #34281a; }
.page ul { margin: 0 0 16px 22px; }
.page li { margin-bottom: 8px; font-size: 16px; color: #34281a; }
.page a { color: var(--primary); }

.highlight {
  background: #fff3ea;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 18px 0;
  font-size: 15px;
}

/* Contact chips */
.contact-list { list-style: none; margin: 10px 0 0; padding: 0; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f4ece3;
  font-size: 16px;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .ic { font-size: 20px; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 30px 0 40px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid #f0e4d8;
  margin-top: 20px;
}
.site-footer a { color: var(--muted); margin: 0 4px; }
.site-footer .links { margin-top: 8px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
