/* Eser Travel, shared legal/about chrome */
:root {
  --teal: #1aa6a0;
  --coral: #f07850;
  --cream: #fff7ee;
  --ink: #17353a;
  --muted: #4a6569;
  --line: rgba(23, 53, 58, 0.12);
  --paper: #fffaf4;
  --deep: #0b2a2e;
}

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

body {
  font-family: Nunito, system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #e8f4f2 0%, var(--paper) 28%, #fff 100%);
  min-height: 100vh;
  line-height: 1.55;
}

body[dir="rtl"] {
  font-family: Rubik, Nunito, system-ui, sans-serif;
}

a { color: var(--teal); }
a:hover { color: var(--coral); }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 250, 244, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.brand-link img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
}

.langs {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(26, 166, 160, 0.1);
  border: 1px solid rgba(26, 166, 160, 0.2);
}

.langs button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}

.langs button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
}

.wrap {
  width: min(100% - 2rem, 48rem);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.wrap h1 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.lede {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.wrap h2 {
  font-size: 1.15rem;
  margin: 1.6rem 0 0.55rem;
}

.wrap p, .wrap li {
  margin-bottom: 0.75rem;
  color: #243f43;
}

.wrap ul {
  padding-inline-start: 1.2rem;
  margin-bottom: 1rem;
}

.meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--deep);
  color: var(--cream);
  padding: 1.75rem clamp(1rem, 3vw, 2rem) 2.25rem;
}

.site-footer a {
  color: #9fe3de;
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover { color: #ffb089; }

.footer-grid {
  width: min(100%, 68rem);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  font-size: 0.95rem;
}

.footer-note {
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.75;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.45;
}

@media (max-width: 520px) {
  .topbar { flex-wrap: wrap; }
}
