/* Umayra — umayra.app static site. Zero dependencies. Bilingual (TR default / EN).
   Elite refresh: layered shadows, soft gradient meshes, airy spacing. */

:root {
  --bg: #fcf8f4;
  --bg-soft: #f5e9e1;
  --card: #ffffff;
  --primary: #b5532e; /* terracotta */
  --primary-dark: #5a140a; /* deep maroon */
  --accent: #e8a98c;
  --rose: #f6d9ce;
  --text: #3a2c26;
  --muted: #7a6a62;
  --line: #ecdcd2;
  --gold: #e0a85c;
  --radius: 20px;
  --radius-lg: 28px;
  --maxw: 1120px;
  --shadow-sm: 0 2px 10px rgba(90, 20, 10, 0.05);
  --shadow-md: 0 14px 36px rgba(90, 20, 10, 0.10);
  --shadow-lg: 0 28px 70px rgba(90, 20, 10, 0.16);
  --font: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Language toggle ───────────────────────────────────────────── */
.en { display: none; }
html.lang-en .tr { display: none; }
html.lang-en .en { display: initial; }
html.lang-en .en.block { display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.soft { background: var(--bg-soft); }
.narrow { max-width: 760px; }

/* ── Header ────────────────────────────────────────────────────── */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 248, 244, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(236, 220, 210, 0.7);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; color: var(--primary-dark); letter-spacing: -0.2px; }
.brand-logo { width: 32px; height: 32px; border-radius: 10px; display: block; box-shadow: var(--shadow-sm); }
.foot-logo { width: 20px; height: 20px; border-radius: 6px; vertical-align: -4px; margin-right: 6px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--text); font-weight: 700; font-size: 15px; opacity: 0.85; transition: opacity 0.15s; }
.nav-links a:hover { opacity: 1; text-decoration: none; }
.lang-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.lang-btn:hover { border-color: var(--accent); transform: translateY(-1px); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 15px 30px;
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 10px 26px rgba(181, 83, 46, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(181, 83, 46, 0.42); text-decoration: none; }
.btn-ghost { background: var(--card); color: var(--primary-dark); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; }

/* ── Sections ──────────────────────────────────────────────────── */
section { padding: 76px 0; }
.section-title { text-align: center; font-size: 34px; line-height: 1.2; color: var(--primary-dark); margin: 0 0 10px; font-weight: 900; letter-spacing: -0.5px; }
.section-sub { text-align: center; color: var(--muted); max-width: 580px; margin: 0 auto 44px; font-size: 17px; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: 84px 0 76px;
  background:
    radial-gradient(720px 320px at 88% -8%, var(--rose), transparent 62%),
    radial-gradient(620px 300px at -5% 10%, #fbe3d3, transparent 60%),
    linear-gradient(180deg, #fff6f0 0%, var(--bg) 72%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: 50px; line-height: 1.08; margin: 16px 0 18px; color: var(--primary-dark); letter-spacing: -1px; font-weight: 900; }
.hero-copy .lead { margin: 0 0 30px; font-size: 19px; color: var(--muted); max-width: 560px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero-art img {
  width: 100%;
  max-width: 460px;
  display: block;
  margin-left: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Personas ──────────────────────────────────────────────────── */
.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.persona {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.persona:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.persona img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; margin-bottom: 12px; }
.persona h3 { margin: 0 0 4px; font-size: 16px; color: var(--primary-dark); font-weight: 800; }
.persona p { margin: 0; font-size: 13.5px; color: var(--muted); }

/* ── Feature cards ─────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.card .ico {
  font-size: 24px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rose), #fbe7da);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card h3 { margin: 0 0 6px; font-size: 18px; color: var(--primary-dark); font-weight: 800; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ── 3 Modes (medical / mindfulness / spiritual) ───────────────── */
.modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mode {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 24px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}
.mode:hover { transform: translateY(-5px); }
.mode .ico { font-size: 34px; margin-bottom: 12px; display: block; }
.mode h3 { margin: 0 0 6px; font-size: 19px; font-weight: 900; }
.mode p { margin: 0; font-size: 14.5px; opacity: 0.95; line-height: 1.5; }
.mode-medical { background: linear-gradient(150deg, #3e7c8b, #243f47); }
.mode-mind { background: linear-gradient(150deg, #8b3a62, #4a1942); }
.mode-spirit { background: linear-gradient(150deg, #b5532e, #5a140a); }

/* ── Showcase rows ─────────────────────────────────────────────── */
.show { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; margin: 14px 0; }
.show + .show { margin-top: 56px; }
.show.reverse .show-art { order: 2; }
.show-art img { width: 100%; max-width: 380px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.show-copy h2 { font-size: 28px; color: var(--primary-dark); margin: 0 0 14px; font-weight: 900; letter-spacing: -0.4px; }
.show-copy p { color: var(--muted); font-size: 16.5px; margin: 0; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 4px 20px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 800; color: var(--primary-dark); padding: 16px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 13px; font-size: 22px; color: var(--accent); font-weight: 700; transition: transform 0.2s; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }

/* ── Note / disclaimer ─────────────────────────────────────────── */
.note { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; color: var(--muted); font-size: 14px; max-width: 780px; margin: 0 auto; box-shadow: var(--shadow-sm); }

/* ── Legal / content pages ─────────────────────────────────────── */
.doc { padding: 52px 0 72px; }
.doc h1 { font-size: 34px; color: var(--primary-dark); margin: 0 0 6px; font-weight: 900; letter-spacing: -0.5px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.doc h2 { font-size: 21px; color: var(--primary-dark); margin: 32px 0 8px; font-weight: 800; }
.doc p, .doc li { color: var(--text); }
.doc ul { padding-left: 20px; }
.doc .lead { font-size: 17px; color: var(--muted); }
.doc .box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }

/* ── Footer ────────────────────────────────────────────────────── */
footer.site { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 48px 0; margin-top: 48px; }
.foot { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; }
.foot .col h4 { margin: 0 0 10px; color: var(--primary-dark); font-size: 15px; font-weight: 800; }
.foot a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 6px; }
.foot .copy { color: var(--muted); font-size: 13px; width: 100%; margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero .cta-row { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img { margin: 0 auto; max-width: 320px; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .modes { grid-template-columns: 1fr; }
  .show, .show.reverse { grid-template-columns: 1fr; text-align: center; }
  .show.reverse .show-art { order: 0; }
  .show-art img { margin: 0 auto; }
}
@media (max-width: 800px) {
  section { padding: 56px 0; }
  .hero-copy h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .grid { grid-template-columns: 1fr; }
  .nav-links a:not(.lang-wrap) { display: none; }
}
