/* ============================================
   TRAVEL ANTALYA — Design System v2
   Built on the site's real brand: logo blue #0077B8,
   accent orange #F15921, white ground, Poppins type.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand colors — sampled from the real logo + live site */
  --brand-blue: #0077B8;
  --brand-blue-deep: #045D8C;
  --brand-blue-pale: #E4F1F8;
  --brand-orange: #F15921;
  --ink: #16222E;
  --ink-soft: #5B6B7A;
  --bg: #FFFFFF;
  --bg-tint: #F4F7F9;
  --line: rgba(4,61,90,0.10);

  --font: 'Poppins', -apple-system, sans-serif;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.45em;
  color: var(--brand-blue-deep);
}

h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--ink-soft); font-weight: 300; }

.eyebrow {
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-orange);
  display: inline-block;
  margin-bottom: 0.9em;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 24px;
}
.logo-mark { height: 34px; display: block; }
.mobile-menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  flex-direction: column; gap: 5px; width: 30px;
}
.mobile-menu-toggle span { display: block; height: 2px; width: 100%; background: var(--brand-blue-deep); border-radius: 2px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:not(.nav-cta) { color: var(--ink); padding-bottom: 4px; border-bottom: 2px solid transparent; }
.nav-links a:not(.nav-cta):hover { color: var(--brand-blue); border-color: var(--brand-orange); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
  box-sizing: border-box;
  background: var(--brand-blue);
  color: #fff !important;
  padding: 12px 26px;
  min-width: 90px;
  font-size: 0.95rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--brand-blue-deep); border-color: transparent !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-orange { background: var(--brand-orange); color: #fff; }
.btn-orange:hover { background: #D94A16; }
.btn-blue { background: var(--brand-blue); color: #fff; }
.btn-blue:hover { background: var(--brand-blue-deep); }
.btn-outline-blue { border-color: var(--brand-blue); color: var(--brand-blue); }
.btn-outline-blue:hover { background: var(--brand-blue); color: #fff; }

/* ---------- Section framing ---------- */
section { padding: 84px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-head p { max-width: 480px; margin: 0; }
.see-all {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-blue);
  white-space: nowrap;
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 2px;
}
.see-all:hover { color: var(--brand-blue-deep); }
.tint { background: var(--bg-tint); }

/* ---------- Card grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}
.card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(4,61,90,0.12); }
.card-media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--brand-blue-pale) 0%, #EFF6FA 60%, #F8FBFC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon { width: 30%; height: 30%; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}
.card-body { padding: 20px 22px 24px; }
.card-body h3 { margin-bottom: 0.3em; color: var(--ink); }
.card-body p { font-size: 0.92rem; margin-bottom: 0.9em; }
.card-meta { font-size: 0.78rem; color: var(--brand-orange); font-weight: 600; letter-spacing: 0.02em; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img, .split .card-media { border-radius: var(--radius); }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* ---------- Spotlight (What's Happening Now) ---------- */
.spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.spotlight-copy { padding: 52px 48px; background: var(--brand-blue-deep); color: #fff; }
.spotlight-copy .eyebrow { color: #9FD4EC; }
.spotlight-copy h2 { color: #fff; }
.spotlight-copy p { color: rgba(255,255,255,0.82); }
.spotlight-media { background: linear-gradient(155deg, #EFF6FA, var(--brand-blue-pale)); position: relative; }
@media (max-width: 800px) { .spotlight { grid-template-columns: 1fr; } .spotlight-media { min-height: 220px; } }

/* ---------- Blog list ---------- */
.post-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.post-row .card-media { aspect-ratio: 4/3; border-radius: var(--radius); }
.post-row h3 { margin-bottom: 0.25em; }
.post-date {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-blue); margin-bottom: 0.5em; display: block;
}
@media (max-width: 640px) { .post-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer { background: var(--brand-blue-deep); color: rgba(255,255,255,0.75); padding: 60px 0 30px; }
footer h4 { color: #fff; font-family: var(--font); font-size: 0.86rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1em; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--brand-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px; font-size: 0.8rem; color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Article page ---------- */
.article-header { padding: 60px 0 40px; background: var(--bg-tint); }
.article-header .container { max-width: 780px; }
.article-body { max-width: 720px; margin: 0 auto; padding: 50px 32px; }
.article-body h2 { margin-top: 1.2em; }
.article-body img { border-radius: var(--radius); margin: 1.6em 0; }
.article-cover { aspect-ratio: 16/8; background: var(--bg-tint); overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-body h3 { color: var(--brand-blue-deep); font-size: 1.35rem; margin-top: 1.4em; }
.article-body h4 { font-size: 1.05rem; margin-top: 1.2em; }
.article-body ul, .article-body ol { color: var(--ink-soft); font-weight: 300; padding-left: 1.3em; margin-bottom: 1.2em; }
.article-body li { margin-bottom: 0.5em; }
.article-body a { color: var(--brand-blue); text-decoration: underline; text-decoration-color: rgba(0,119,184,0.3); }
.article-body hr { border: none; border-top: 1px solid var(--line); margin: 2.4em 0; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 0.92rem; }
.article-body th { background: var(--brand-blue-deep); color: #fff; text-align: left; padding: 10px 14px; font-weight: 600; }
.article-body td { padding: 9px 14px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.article-body tr:nth-child(even) td { background: var(--bg-tint); }
.article-body figure { margin: 1.6em 0; }
.article-body figcaption { font-size: 0.82rem; color: var(--ink-soft); text-align: center; margin-top: 0.5em; }
.article-body .wx-badge, .article-body button { font-family: var(--font); }
.post-category-pill {
  display: inline-block; background: var(--brand-blue-pale); color: var(--brand-blue-deep);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-right: 8px;
}

@media (max-width: 760px) {
  .logo-mark { height: 26px; }
  .mobile-menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(4,61,90,0.12);
    padding: 6px 24px 18px;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a:not(.nav-cta) {
    display: block !important;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta { display: inline-block; margin: 14px 0 4px; }
}

/* ---------- Compatibility: sub-pages not yet redesigned to the new brand pass ---------- */
.logo { font-family: var(--font); font-size: 1.4rem; font-weight: 700; color: var(--brand-blue-deep); }
.logo span { color: var(--brand-orange); }
.hero { background: var(--bg-tint); padding: 60px 0; }
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.hero .lead { color: var(--ink-soft); }
