/* Çukur — static pages for App Store / Netlify */
:root {
  --bg: #f4f3ef;
  --surface: #ffffff;
  --text: #111010;
  --muted: #6b6760;
  --gold: #ffd600;
  --gold-dark: #e6c200;
  --accent: #bc563b;
  --border: #e8e5df;
  --max: 42rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Heebo", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Physical top-left on screen (LTR coordinates) — works for “link in corner” for reviewers */
.top-bar__corner {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.top-bar {
  position: relative;
  min-height: 3.25rem;
  padding-inline-start: 1rem;
  padding-inline-end: 1rem;
}

.top-bar__title {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  padding-inline: 5rem;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-pill:hover {
  background: var(--gold-dark);
  text-decoration: none;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.hero {
  text-align: center;
  padding: 1.5rem 0 2rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
}

.hero p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.card p {
  margin: 0 0 0.75rem;
}

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

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 600;
}

.hours-list .time {
  color: var(--muted);
  text-align: end;
}

.contact-line {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.contact-line strong {
  display: block;
  margin-bottom: 0.15rem;
}

/* Privacy long-form */
.privacy-doc h1 {
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}

.privacy-doc .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.privacy-doc h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}

.privacy-doc h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.4rem;
}

.privacy-doc p,
.privacy-doc ul {
  margin: 0 0 0.75rem;
}

.privacy-doc ul {
  padding-inline-start: 1.25rem;
}

.privacy-doc li {
  margin-bottom: 0.35rem;
}

.footer-note {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}
