/* ============================================================
   Türkiye Gez — temporary premium landing page
   Palette: #F7F3EE #E8E2D6 #D9C8A3 #C0392B #253A45 #0F1419
   ============================================================ */

:root {
  --cream: #f7f3ee;
  --sand: #e8e2d6;
  --gold: #d9c8a3;
  --gold-deep: #b8945a;
  --red: #c0392b;
  --teal: #253a45;
  --ink: #0f1419;

  --text-dark: #2b2b2b;
  --text-muted: #5c5f63;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--ink);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

/* ----------------------------------------------------------------
   Cinematic golden-hour scene (fixed behind the hero)
   ---------------------------------------------------------------- */
.scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #16262e 0%,
      var(--teal) 26%,
      #5f5440 58%,
      #b07b3f 78%,
      #e0a85a 92%,
      #f0c074 100%
    );
}

.sun-glow {
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: 120vmax;
  height: 120vmax;
  transform: translateX(-50%);
  background: radial-gradient(
    circle at 50% 100%,
    rgba(255, 221, 158, 0.85) 0%,
    rgba(240, 178, 96, 0.45) 22%,
    rgba(192, 57, 43, 0.18) 42%,
    rgba(15, 20, 25, 0) 66%
  );
  filter: blur(2px);
  pointer-events: none;
}

.warm-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(217, 200, 163, 0.18) 0%, rgba(15, 20, 25, 0) 55%),
    linear-gradient(180deg, rgba(15, 20, 25, 0.55) 0%, rgba(15, 20, 25, 0) 35%, rgba(15, 20, 25, 0.35) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(180px, 34vh, 360px);
  object-fit: cover;
  object-position: bottom center;
  opacity: 0.96;
  filter: drop-shadow(0 -12px 40px rgba(15, 20, 25, 0.45));
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------
   Header
   ---------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(217, 200, 163, 0.28);
  flex: none;
}

.brand-name {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
}

.header-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.header-nav a {
  text-decoration: none;
  color: rgba(247, 243, 238, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}

.header-nav a:hover {
  color: var(--gold);
}

.brand-status {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 7px 14px;
  border: 1px solid rgba(217, 200, 163, 0.35);
  border-radius: 999px;
  background: rgba(15, 20, 25, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ----------------------------------------------------------------
   Hero (sits over the cinematic scene)
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 78vh;
  padding: clamp(24px, 6vh, 64px) clamp(20px, 5vw, 56px) clamp(56px, 12vh, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glass-card {
  max-width: 720px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius);
  background: linear-gradient(
    160deg,
    rgba(247, 243, 238, 0.14) 0%,
    rgba(37, 58, 69, 0.22) 100%
  );
  border: 1px solid rgba(247, 243, 238, 0.22);
  box-shadow:
    0 30px 80px -30px rgba(15, 20, 25, 0.7),
    inset 0 1px 0 rgba(247, 243, 238, 0.25);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  animation: rise 1s var(--ease) both;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(15, 20, 25, 0.4);
}

.subheading {
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-weight: 400;
  color: rgba(247, 243, 238, 0.88);
  max-width: 56ch;
}

.status-notice {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(15, 20, 25, 0.28);
  border: 1px solid rgba(217, 200, 163, 0.28);
}

.status-notice p {
  font-size: 0.96rem;
  color: rgba(247, 243, 238, 0.9);
}

.status-notice strong {
  color: var(--cream);
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  box-shadow: 0 0 0 0 rgba(217, 200, 163, 0.6);
  animation: pulse 2.4s ease-out infinite;
}

.cta-row {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.cta-primary {
  padding: 14px 30px;
  color: var(--cream);
  background: var(--red);
  box-shadow: 0 14px 34px -12px rgba(192, 57, 43, 0.8);
}

.cta-primary:hover,
.cta-primary:focus-visible {
  transform: translateY(-2px);
  background: #d2473a;
  box-shadow: 0 20px 44px -12px rgba(192, 57, 43, 0.9);
}

.cta-hint {
  font-size: 0.92rem;
  color: rgba(247, 243, 238, 0.72);
}

/* ----------------------------------------------------------------
   Content sections (light, editorial — scroll over the scene)
   ---------------------------------------------------------------- */
.section {
  position: relative;
  z-index: 1;
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 56px);
}

.section:nth-of-type(even) {
  background: var(--sand);
}

.section-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.eyebrow-dark {
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  color: var(--teal);
  letter-spacing: -0.01em;
}

.section-lead {
  margin: 18px auto 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-muted);
}

/* Feature grid */
.feature-grid {
  list-style: none;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  padding: 30px 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(37, 58, 69, 0.08);
  box-shadow: 0 18px 40px -28px rgba(15, 20, 25, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -28px rgba(15, 20, 25, 0.45);
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* City previews */
.city-grid {
  list-style: none;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.city {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 26px 24px;
  border-radius: 18px;
  color: var(--cream);
  background:
    linear-gradient(150deg, rgba(37, 58, 69, 0.78) 0%, rgba(15, 20, 25, 0.92) 100%);
  border: 1px solid rgba(217, 200, 163, 0.22);
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.city::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, rgba(217, 200, 163, 0.28) 0%, rgba(217, 200, 163, 0) 55%);
  pointer-events: none;
}

.city:hover {
  transform: translateY(-4px);
}

.city-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

/* When a city card title is a link, make the whole card clickable */
a.city-name::after {
  content: "";
  position: absolute;
  inset: 0;
}

.city:hover a.city-name,
a.city-name:focus-visible {
  color: var(--gold);
}

.city-tag {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* Discovery categories */
.category-row {
  list-style: none;
  max-width: var(--maxw);
  margin: clamp(28px, 4vw, 44px) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.category-row li {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(37, 58, 69, 0.14);
}

/* About */
.section-about {
  background: var(--cream);
}

.about-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-card .section-title {
  margin-bottom: 22px;
}

.about-card p {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--text-muted);
  margin-bottom: 16px;
}

.contact-line {
  margin-top: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.contact-line a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.contact-line a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: rgba(247, 243, 238, 0.8);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 56px) 34px;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1rem;
  color: var(--gold);
}

.footer-tagline {
  margin-top: 6px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream);
}

.footer-about {
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 36ch;
  color: rgba(247, 243, 238, 0.62);
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(247, 243, 238, 0.78);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: var(--maxw);
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 243, 238, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(247, 243, 238, 0.55);
}

/* ----------------------------------------------------------------
   Legal pages (privacy / terms)
   ---------------------------------------------------------------- */
.legal {
  position: relative;
  z-index: 1;
  background: var(--cream);
  color: var(--text-dark);
  min-height: 70vh;
  padding: clamp(40px, 7vw, 90px) clamp(20px, 5vw, 56px);
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--teal);
  margin: 32px 0 12px;
}

.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 22px;
}

.legal a {
  color: var(--red);
  font-weight: 500;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  text-decoration: none;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.92rem;
}

.back-link:hover {
  text-decoration: underline;
}

/* On legal pages the fixed cinematic scene is hidden for legibility */
.legal-page .scene {
  display: none;
}

.legal-page {
  background: var(--cream);
}

.legal-page .site-header {
  color: var(--teal);
}

.legal-page .brand,
.legal-page .brand-name {
  color: var(--teal);
}

/* ----------------------------------------------------------------
   Motion
   ---------------------------------------------------------------- */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 200, 163, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(217, 200, 163, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 200, 163, 0);
  }
}

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 940px) {
  .feature-grid,
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 22px 20px;
    flex-wrap: wrap;
  }

  .header-nav {
    display: none;
  }

  .brand-name {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
  }

  .brand-status {
    margin-left: auto;
  }

  .hero {
    padding: 16px 20px 64px;
    min-height: 82vh;
    text-align: center;
    align-items: center;
  }

  .glass-card {
    text-align: center;
  }

  .status-notice {
    text-align: left;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary {
    width: 100%;
    max-width: 320px;
  }

  .feature-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .skyline {
    height: clamp(150px, 28vh, 240px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* Accessibility: respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
