/* EasyReseva static site — dark-first, PingDoor-inspired layout */
:root {
  --bg: #0c1222;
  --bg-elevated: #141c30;
  --bg-card: #1a2438;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f4fc;
  --muted: #9aa4b8;
  --accent: #3b82f6;
  --accent-dim: rgba(59, 130, 246, 0.2);
  --radius: 14px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  --max: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 18, 34, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.brand:hover {
  text-decoration: none;
  opacity: 0.92;
}
.brand:hover .brand__easy,
.brand:hover .brand__reseva {
  filter: brightness(1.06);
}
.brand__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  /* PNG seffaf kenar: gölge kutusu degil ikon silueti */
  box-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
@media (min-width: 640px) {
  .brand__icon {
    width: 48px;
    height: 48px;
  }
}
.brand__wordmark {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
}
.brand__easy {
  color: #ff9f1a;
}
.brand__reseva {
  color: #007fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
}
.nav a:hover {
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.lang-switch a {
  padding: 6px 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}
.lang-switch a:hover {
  background: var(--accent-dim);
  color: var(--text);
}
.lang-switch a.is-active {
  background: var(--accent);
  color: #fff;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.hero {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2rem);
  letter-spacing: -0.03em;
}

.hero .tagline {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  text-decoration: none;
}
.btn:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.btn--primary:hover {
  filter: brightness(1.08);
  background: var(--accent);
}

.card-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.meta-line {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 20px;
}

.meta-line strong {
  color: var(--text);
}

.legal h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.15rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.legal h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal .note {
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 24px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--muted);
}

.i18n[hidden] {
  display: none !important;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
