/* Daily Dish — website styles. Uygulamayla aynı dil: beyaz zemin, tek vurgu
   rengi (#E23744), Rubik. Sade, fotoğraf odaklı. */

:root {
  --bg: #ffffff;
  --surface: #f6f6f7;
  --ink: #141416;
  --ink-soft: #6e6e76;
  --line: #e8e8eb;
  --accent: #e23744;
  --accent-dark: #c31f2c;
  --radius: 18px;
  --maxw: 1080px;
  --shadow: 0 12px 40px rgba(20, 20, 22, 0.08);
  --shadow-sm: 0 4px 16px rgba(20, 20, 22, 0.06);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.accent { color: var(--accent); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700;
  font-size: 18px; letter-spacing: -0.2px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) { color: var(--ink-soft); font-size: 15px;
  font-weight: 500; transition: color 0.15s; }
.nav-links a:not(.btn):hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--accent-dark); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { background: var(--surface); }

/* Dil seçici */
.lang-select {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 30px 8px 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236e6e76' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.15s;
}
.lang-select:hover { border-color: var(--ink-soft); }
.lang-select:focus { outline: none; border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 40px; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -1.4px;
  font-weight: 800;
}
.hero p.lead { margin-top: 20px; font-size: 19px; color: var(--ink-soft);
  max-width: 30ch; }
.hero .cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.badge-soon { font-size: 12.5px; color: var(--ink-soft); margin-top: 16px; }

/* Telefon gösterimi */
.phones { position: relative; display: flex; justify-content: center;
  align-items: flex-end; gap: 18px; }
.phone {
  border-radius: 34px;
  background: #0c0c0e;
  padding: 8px;
  box-shadow: var(--shadow);
  width: 210px;
  flex: 0 0 auto;
}
.phone.tall { width: 232px; margin-bottom: 26px; z-index: 2; }
.phone img { border-radius: 27px; width: 100%; display: block; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.8px;
  font-weight: 800; }
.section-head p { margin-top: 12px; color: var(--ink-soft); font-size: 17px; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 13px;
  letter-spacing: 1.6px; text-transform: uppercase; }

/* Özellik kartları */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.card .ic {
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(226, 55, 68, 0.1);
  display: grid; place-items: center; font-size: 23px; margin-bottom: 16px;
}
.card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.2px; }
.card p { margin-top: 7px; color: var(--ink-soft); font-size: 15px; }

/* Mutfaklar şeridi */
.cuisines { background: var(--surface); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 16px;
}
.chip span { color: var(--accent); }

/* Diller */
.langs { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lang { font-size: 17px; font-weight: 600; color: var(--ink-soft); }
.lang b { color: var(--ink); }

/* CTA bandı */
.band { background: var(--accent); color: #fff; text-align: center;
  border-radius: 28px; padding: 56px 24px; }
.band h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.6px;
  font-weight: 800; }
.band p { margin-top: 12px; opacity: 0.92; font-size: 17px; }
.band .btn { background: #fff; color: var(--accent); margin-top: 24px; }
.band .btn:hover { background: #f2f2f2; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 20px; }
footer .wrap { display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; }
footer .brand { font-size: 16px; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: var(--ink-soft); font-size: 15px; }
.foot-links a:hover { color: var(--accent); }
.copy { color: var(--ink-soft); font-size: 13.5px; width: 100%; }

/* ---------- Legal (privacy / terms) ---------- */
.doc { padding: 56px 0 40px; }
.doc .wrap { max-width: 760px; }
.doc h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -1px;
  font-weight: 800; }
.doc .updated { color: var(--ink-soft); margin-top: 8px; font-size: 15px; }
.doc h2 { font-size: 22px; margin-top: 34px; font-weight: 700;
  letter-spacing: -0.3px; }
.doc p, .doc li { color: #33333a; font-size: 16.5px; margin-top: 12px; }
.doc ul { margin-top: 8px; padding-left: 22px; }
.doc li { margin-top: 6px; }
.doc a { color: var(--accent); text-decoration: underline; }
.doc a.btn { color: #fff; text-decoration: none; }
.back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 26px;
  color: var(--ink-soft); font-weight: 500; }
.back:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { padding: 56px 0 32px; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .cta { justify-content: center; }
  .features { grid-template-columns: 1fr; }
  .nav-links .navhide { display: none; }

  /* Show a single, centered phone mockup so nothing overflows */
  .phones { margin-top: 8px; gap: 0; }
  .phones .phone:not(.tall) { display: none; }
  .phone.tall { width: min(250px, 66vw); margin-bottom: 0; }

  /* Keep the nav compact so brand + language + action fit on one row */
  .nav .wrap { height: 60px; }
  .nav-links { gap: 10px; }
  .brand { font-size: 16px; gap: 8px; }
  .brand img { width: 30px; height: 30px; }
  .btn { padding: 9px 16px; font-size: 14px; }
  .lang-select {
    font-size: 14px;
    padding: 8px 26px 8px 12px;
    background-position: right 10px center;
  }

  /* Footer stacks and centers */
  footer .wrap { flex-direction: column; text-align: center; gap: 14px; }
  .foot-links { justify-content: center; }
  .copy { text-align: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  section { padding: 44px 0; }
  .hero { padding: 44px 0 28px; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); letter-spacing: -0.6px; }
  .hero p.lead { font-size: 17px; margin-top: 16px; }
  .badge-soon { margin-top: 14px; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(24px, 6.6vw, 34px); letter-spacing: -0.4px; }
  .section-head p { font-size: 15.5px; margin-top: 10px; }
  .card { padding: 22px 20px; }
  .band { padding: 44px 20px; border-radius: 22px; }
  .band h2 { font-size: clamp(24px, 6.4vw, 32px); }
  .chip { padding: 10px 18px; font-size: 15px; }
  .nav-links { gap: 8px; }
  .btn { padding: 9px 14px; }
  .lang-select { padding: 8px 24px 8px 10px; }
  .doc { padding: 40px 0 32px; }
}

/* Hide the brand wordmark on the very smallest phones to guarantee the
   language switcher and action button stay on one uncrowded row */
@media (max-width: 360px) {
  .brand span { display: none; }
}
