/* Hand-written dark-mode overrides for the simple content pages
   (hakkimizda.html, iletisim.html, kvkk.html) — same "Karanlik Luks Gece" palette
   used on the home page, scoped under html[data-theme="dark"]. */

html[data-theme="dark"]{
  --ink:#f3ede2;
  --cream:#0a0908;
  --paper:#1c1610;
  --sea:#c9a173;
  --gold:#c9a173;
  --muted:#a89a86;
  --line:rgba(243,237,226,.10);
}

/* Most of these pages already read var(--ink)/var(--cream)/var(--paper)/var(--sea)/var(--gold)/
   var(--muted)/var(--line) throughout, so the redefinition above already recolors body text,
   .kicker, h1/h2, p, .card, .contact, .map-card, .map-card a, .nav a, and borders correctly.
   What's left are the handful of hardcoded literal colors in each page's inline <style>. */

html[data-theme="dark"] .nav{
  border-bottom-color:var(--line);
}
html[data-theme="dark"] .nav a{color:var(--sea)}

/* The nav logo artwork is dark text on a light plate — keep it on its own light plaque so it
   stays legible instead of vanishing into the dark background. */
html[data-theme="dark"] .nav img{
  background:rgba(243,237,226,.96);
  border:1px solid rgba(201,161,115,.5);
  border-radius:12px;
  padding:6px 10px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}

html[data-theme="dark"] .phone{
  background:linear-gradient(135deg,#c9a173,#9c7248);
  color:#171310;
  font-weight:700;
}

html[data-theme="dark"] .note{
  background:rgba(201,161,115,.08);
  border-color:rgba(201,161,115,.24);
  color:var(--gold);
}

html[data-theme="dark"] .map-card iframe{
  filter:invert(.92) hue-rotate(180deg) contrast(.9);
}

html[data-theme="dark"] .cookie-banner{
  background:#1c1610;
  border:1px solid rgba(201,161,115,.24);
  box-shadow:0 14px 45px rgba(0,0,0,.5);
}
html[data-theme="dark"] .cookie-actions button{border-color:rgba(243,237,226,.24)}
html[data-theme="dark"] .cookie-actions .primary{
  background:linear-gradient(135deg,#c9a173,#9c7248);
  color:#171310;
  font-weight:700;
}
