/* ===== LUXENTRA — Old Money Navy migration (Neden Biz) =====
   Overrides the legacy brown palette from main.css for this page only.
   Page stays entirely navy (dark translucent cards), matching the
   homepage "Neden bizimle" / "Nasıl çalışıyoruz" reference sections —
   unlike the tour detail pages, this page does NOT flip to an ivory
   section. Loaded last so it wins by source order / specificity. */

:root{
  --ink:#061525;
  --ink-2:#0B2438;
  --gold:#C9A55C;
  --gold-soft:#D8BC7A;
  --cream:#FCFAF6;
  --muted:#D7DFE7;
  --line:rgba(201,165,92,.28);
  --teal:#18bca6;
  --card:#0B2438;
}

header{background:rgba(6,21,37,.96)}

/* Hero uses routes-bg.webp (same intense sunset image as #tours on the
   homepage) — needs a much stronger navy scrim than main.css's original
   rgba(20,17,13,…) brown-black overlay to fully suppress the warmth. */
.hero::before{
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(6,21,37,.30) 0%, transparent 75%),
    linear-gradient(90deg,rgba(6,21,37,.95) 0%,rgba(6,21,37,.86) 34%,rgba(6,21,37,.68) 60%,rgba(6,21,37,.40) 82%,rgba(6,21,37,.20) 100%),
    linear-gradient(0deg,rgba(6,21,37,.92),transparent 55%);
}

main{background:linear-gradient(180deg,#061525 0%,#071A2B 55%,#0B2438 100%)}

@media(max-width:720px){
  header{background:rgba(6,21,37,.92)!important}
  .hero::before{
    background:
      radial-gradient(ellipse 90% 60% at 50% 30%, rgba(6,21,37,.25) 0%, transparent 75%),
      linear-gradient(180deg,rgba(6,21,37,.80) 0%,rgba(6,21,37,.50) 38%,rgba(6,21,37,.92) 100%),
      linear-gradient(90deg,rgba(6,21,37,.78),rgba(6,21,37,.30))!important;
  }
}
