/* EnjoyMore — Shared Stylesheet for subpages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-500: #888;
  --accent: #5e5ce6;
  --serif: "Georgia", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--accent); color: #fff;
  padding: 8px 16px; z-index: 999;
}
.skip-link:focus { top: 0; }

/* ── NAV ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 60px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
header.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

.logo-container {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px; letter-spacing: -0.02em;
  color: var(--black) !important; text-decoration: none !important;
}
.logo-container img { width: 32px; height: 32px; border-radius: 0; }
.logo-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, #5e5ce6, #a78bfa);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px;
}

.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--gray-500);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

.lang-select {
  background: var(--gray-100); padding: 3px;
  border-radius: 8px; border: none;
}
.lang-select select {
  background: transparent; border: none;
  font-size: 12px; font-weight: 600;
  color: var(--black); outline: none; cursor: pointer;
  padding: 4px 8px;
}

/* ── MAIN LAYOUT ── */
main {
  max-width: 760px;
  margin: 100px auto 80px;
  padding: 0 24px;
}

/* ── PAGE HERO ── */
.page-hero {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 12px;
}
.page-hero p { font-size: 16px; color: var(--gray-500); line-height: 1.6; }
.meta-row { margin-top: 16px; }
.pill {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-500);
  border: 1px solid var(--gray-200);
  padding: 4px 10px; border-radius: 3px;
}

/* ── CONTENT ── */
.content { padding-top: 0; }

.card {
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-200);
}
.card:last-child { border-bottom: none; }

.card h2 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 14px; color: var(--black);
}
.card p {
  font-size: 15px; line-height: 1.8;
  color: #444; margin-bottom: 12px;
}
.card p:last-child { margin-bottom: 0; }
.card ul { margin: 0 0 12px 20px; }
.card li { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 6px; }
.card a { color: var(--accent); }

/* ── FOOTER ── */
footer {
  text-align: center; padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500); font-size: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  header { padding: 0 20px; }
  .nav-links { display: none; }
  main { margin-top: 80px; padding: 0 20px; }
  .page-hero h1 { font-size: 30px; }
}
