/* =====================================================================
   Where Will You Travel — site styles v2 (layered on Bootstrap 5.3)
   Editorial travel look: Fraunces serif display + Plus Jakarta Sans,
   deep navy + warm amber, soft radii, layered shadows.
   ===================================================================== */

:root {
  --wwyt-navy: #101d3a;
  --wwyt-navy-soft: #1d2d55;
  --wwyt-ink: #1c2333;
  --wwyt-accent: #f4a915;
  --wwyt-accent-dark: #d98e00;
  --wwyt-cream: #faf7f0;
  --wwyt-bg-soft: #f4f6fb;
  --wwyt-line: #e7eaf3;
  --wwyt-radius: 1.1rem;
  --wwyt-shadow: 0 1px 2px rgba(16, 29, 58, .05), 0 8px 24px rgba(16, 29, 58, .07);
  --wwyt-shadow-lift: 0 2px 4px rgba(16, 29, 58, .06), 0 18px 44px rgba(16, 29, 58, .14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--wwyt-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display-5, .display-6 {
  font-family: var(--font-display);
  letter-spacing: -.01em;
}

a { color: var(--wwyt-navy-soft); }
a:hover { color: var(--wwyt-accent-dark); }

/* ---------- Navbar ---------- */
.site-navbar {
  background: rgba(16, 29, 58, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: .8rem;
  padding-bottom: .8rem;
}
.site-navbar .navbar-brand, .site-navbar .nav-link, .site-navbar .dropdown-toggle { color: #fff; }
.site-navbar .nav-link { font-weight: 600; font-size: .95rem; opacity: .85; }
.site-navbar .nav-link:hover, .site-navbar .nav-link:focus { color: var(--wwyt-accent); opacity: 1; }
.site-navbar .navbar-toggler { border-color: rgba(255, 255, 255, .35); }
.site-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-navbar .dropdown-menu {
  border-radius: .9rem;
  border: 1px solid var(--wwyt-line);
  box-shadow: var(--wwyt-shadow-lift);
  padding: .5rem;
}
.site-navbar .dropdown-item { border-radius: .55rem; padding: .5rem .8rem; }
.site-navbar .dropdown-item:hover { background: var(--wwyt-cream); color: var(--wwyt-navy); }
.brand-icon { color: var(--wwyt-accent); font-size: 1.45rem; }
.brand-text { font-family: var(--font-display); font-weight: 700; letter-spacing: .2px; font-size: 1.15rem; }
.site-navbar .form-control {
  background: rgba(255, 255, 255, .12);
  border-color: transparent;
  color: #fff;
  border-radius: 2rem 0 0 2rem;
  min-width: 230px;
}
.site-navbar .form-control::placeholder { color: rgba(255, 255, 255, .55); }
.site-navbar .form-control:focus { background: rgba(255, 255, 255, .18); color: #fff; box-shadow: none; border-color: var(--wwyt-accent); }
.site-navbar .btn-accent { border-radius: 0 2rem 2rem 0; }

/* ---------- Buttons ---------- */
.btn { border-radius: 2rem; font-weight: 700; padding-inline: 1.15rem; }
.btn-lg { padding-inline: 1.5rem; }
.btn-accent {
  background: linear-gradient(135deg, #ffc145, var(--wwyt-accent));
  border: none;
  color: #1a1502;
  box-shadow: 0 4px 14px rgba(244, 169, 21, .35);
}
.btn-accent:hover, .btn-accent:focus {
  background: linear-gradient(135deg, var(--wwyt-accent), var(--wwyt-accent-dark));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(244, 169, 21, .45);
}
.btn-outline-dark { border-color: #cfd5e4; color: var(--wwyt-navy); }
.btn-outline-dark:hover { background: var(--wwyt-navy); border-color: var(--wwyt-navy); }
.text-accent { color: var(--wwyt-accent-dark); }

/* ---------- Hero ---------- */
.hero-band {
  position: relative;
  background:
    radial-gradient(900px 420px at 88% -20%, rgba(244, 169, 21, .16), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(29, 45, 85, .10), transparent 55%),
    linear-gradient(180deg, var(--wwyt-cream), #fff 88%);
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
  overflow: hidden;
}
.hero-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='280' viewBox='0 0 640 280'%3E%3Cpath d='M20 240 Q 200 60 380 120 T 620 40' fill='none' stroke='%23101d3a' stroke-opacity='.07' stroke-width='2' stroke-dasharray='2 9'/%3E%3Cpath d='M608 32 l18 8 -14 2 -4 12 z' fill='%23f4a915' fill-opacity='.55'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -40px top 10px;
  pointer-events: none;
}
.hero-band .display-5 { font-weight: 600; font-size: clamp(2.3rem, 5vw, 3.4rem); }
.hero-band .display-5 .text-accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--wwyt-accent-dark), var(--wwyt-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-band .lead { color: #4c5670; max-width: 34rem; }
.hero-img { height: 360px; object-fit: cover; transition: transform .5s ease; }
.hero-card { border-radius: var(--wwyt-radius); box-shadow: var(--wwyt-shadow-lift); }
.hero-card:hover .hero-img { transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(10, 16, 32, .92));
  padding-top: 4rem;
}
.hero-overlay .h4 { font-family: var(--font-display); }

/* ---------- Sections ---------- */
.section-title {
  position: relative;
  padding-left: 0;
  padding-bottom: .35rem;
  font-weight: 600;
}
.section-title::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 44px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--wwyt-accent), #ffd47d);
}
.band-light { background: linear-gradient(180deg, var(--wwyt-cream), #fff); }

/* ---------- Cards ---------- */
.card { border-radius: var(--wwyt-radius); }
.card.shadow-sm { box-shadow: var(--wwyt-shadow) !important; border: 1px solid var(--wwyt-line) !important; }
.article-card { overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--wwyt-shadow-lift) !important; }
.article-card .card-img-top { height: 195px; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .card-img-top { transform: scale(1.05); }
.article-card .card-title { font-size: 1.12rem; line-height: 1.35; }
.article-card .card-title a { color: inherit; text-decoration: none; }
.article-card .card-title a:hover { color: var(--wwyt-accent-dark); }
.card-img-wrap { display: block; overflow: hidden; }

.category-badge {
  background: var(--wwyt-navy); color: #fff;
  border-radius: 2rem; padding: .4em .9em;
  font-weight: 600; letter-spacing: .03em; font-size: .72rem;
  text-transform: uppercase;
}
.tag-badge {
  background: var(--wwyt-cream); color: var(--wwyt-navy);
  border: 1px solid #eadfc4; border-radius: 2rem; padding: .45em .95em;
  font-weight: 600;
}
.tag-badge:hover { background: var(--wwyt-accent); border-color: var(--wwyt-accent); color: #1a1502; }
.author-link { color: inherit; text-decoration: none; font-weight: 700; }
.author-link:hover { color: var(--wwyt-accent-dark); }

/* Destination tiles */
.dest-card { border-radius: var(--wwyt-radius); box-shadow: var(--wwyt-shadow); transition: transform .25s ease, box-shadow .25s ease; }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--wwyt-shadow-lift); }
.dest-img { height: 230px; object-fit: cover; transition: transform .5s ease; }
.dest-card:hover .dest-img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(10, 16, 32, .88));
  padding-top: 3rem;
}
.dest-overlay strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .01em; }

/* Airport cards + IATA chips */
.airport-card { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.airport-card:hover { transform: translateY(-3px); box-shadow: var(--wwyt-shadow-lift) !important; border-color: #f1d9a4 !important; }
.iata-chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 58px; height: 58px; padding: 0 .4rem;
  background: linear-gradient(145deg, var(--wwyt-navy-soft), var(--wwyt-navy));
  color: var(--wwyt-accent);
  font-weight: 800; letter-spacing: 1.5px; border-radius: 1rem;
  font-size: 1.05rem; flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 3px 8px rgba(16, 29, 58, .25);
}
.iata-chip-lg { min-width: 88px; height: 88px; font-size: 1.7rem; background: rgba(255, 255, 255, .1); }
.iata-chip-sm { min-width: 42px; height: 42px; font-size: .8rem; border-radius: .7rem; }
.size-badge { text-transform: capitalize; border-radius: 2rem; }
.size-large { background: var(--wwyt-accent); color: #1a1502; }
.size-medium { background: #e3e8f4; color: var(--wwyt-ink); }
.size-small { background: #f0f1f5; color: #5a6275; }

.airport-header {
  background:
    radial-gradient(600px 300px at 90% -30%, rgba(244, 169, 21, .25), transparent 60%),
    linear-gradient(125deg, var(--wwyt-navy), var(--wwyt-navy-soft));
  border-radius: var(--wwyt-radius);
}
.airport-header h1 { font-weight: 600; }

/* City hero */
.city-hero { height: 380px; overflow: hidden; }
.city-hero-img { width: 100%; height: 100%; object-fit: cover; }
.city-hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  background: linear-gradient(transparent 25%, rgba(10, 16, 32, .88));
}
.city-hero-overlay .display-5 { font-weight: 600; }

/* ---------- Article body ---------- */
.article-body { line-height: 1.8; font-size: 1.06rem; color: #2a3245; }
.article-body h2 {
  margin-top: 2.4rem; margin-bottom: .9rem;
  font-weight: 600; font-size: 1.65rem;
}
.article-body h3 { margin-top: 1.9rem; margin-bottom: .65rem; font-weight: 600; font-size: 1.25rem; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--wwyt-radius); }
.article-body blockquote {
  border-left: 4px solid var(--wwyt-accent);
  background: var(--wwyt-cream);
  padding: 1.1rem 1.4rem; border-radius: 0 .8rem .8rem 0;
  font-style: italic; font-family: var(--font-display);
}
.article-body table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 1.4rem 0; border: 1px solid var(--wwyt-line); border-radius: .8rem; overflow: hidden; }
.article-body th, .article-body td { border-bottom: 1px solid var(--wwyt-line); padding: .7rem .95rem; }
.article-body tr:last-child td { border-bottom: 0; }
.article-body th { background: var(--wwyt-cream); font-family: var(--font-body); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }
.article-body ul, .article-body ol { padding-left: 1.4rem; }
.article-body li { margin-bottom: .45rem; }
.article-body a { font-weight: 600; text-decoration-color: rgba(244, 169, 21, .6); text-underline-offset: 3px; }

/* ---------- Popular list ---------- */
.popular-rank {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--wwyt-cream); color: var(--wwyt-navy);
  border: 1px solid #eadfc4;
  border-radius: 50%; font-weight: 800; font-family: var(--font-display);
}
.popular-list a { text-decoration: none; color: inherit; }
.popular-list a:hover { color: var(--wwyt-accent-dark); }

.related-item:hover strong { color: var(--wwyt-accent-dark) !important; }
.related-item img { border-radius: .7rem; }
.fact-list li { margin-bottom: .6rem; }

/* ---------- Filter bar + forms ---------- */
.filter-bar { background: var(--wwyt-cream); border: 1px solid #efe7d4; border-radius: var(--wwyt-radius) !important; }
.form-control, .form-select { border-radius: .7rem; border-color: #dbe0ec; padding: .55rem .85rem; }
.form-control:focus, .form-select:focus { border-color: var(--wwyt-accent); box-shadow: 0 0 0 .25rem rgba(244, 169, 21, .18); }
.input-group-text { border-radius: .7rem 0 0 .7rem; background: var(--wwyt-cream); border-color: #dbe0ec; }

/* Tom Select (searchable dropdowns) */
.ts-control {
  border-radius: .7rem !important;
  border-color: #dbe0ec;
  padding: .55rem .85rem;
  font-family: var(--font-body);
}
.ts-wrapper.focus .ts-control { border-color: var(--wwyt-accent); box-shadow: 0 0 0 .25rem rgba(244, 169, 21, .18); }
.ts-dropdown {
  border-radius: .8rem;
  overflow: hidden;
  border: 1px solid var(--wwyt-line);
  box-shadow: var(--wwyt-shadow-lift);
  font-family: var(--font-body);
}
.ts-dropdown .option { padding: .55rem .9rem; }
.ts-dropdown .active { background: var(--wwyt-cream); color: var(--wwyt-navy); }
.ts-dropdown .ts-dropdown-content { max-height: 320px; }

/* ---------- Ads (clearly labeled, never overlapping) ---------- */
.ad-slot { clear: both; min-height: 0; }
.ad-label {
  display: block;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: #9aa1b3; margin-bottom: .3rem;
}

/* ---------- Affiliate widgets ---------- */
.affiliate-box { background: linear-gradient(180deg, #fffdf6, #fff); border: 1px solid #f0e2bd !important; }
.affiliate-cta {
  border: 1px solid var(--wwyt-line); color: var(--wwyt-ink);
  border-radius: .9rem !important;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.affiliate-cta:hover { border-color: var(--wwyt-accent); background: #fffaf0; transform: translateY(-2px); }

/* ---------- Comments ---------- */
.comment-avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--wwyt-navy-soft), var(--wwyt-navy));
  color: var(--wwyt-accent);
  border-radius: 50%; font-weight: 800; font-family: var(--font-display);
}

/* ---------- Newsletter + footer ---------- */
.newsletter-band {
  background:
    radial-gradient(700px 300px at 12% -40%, rgba(244, 169, 21, .22), transparent 55%),
    linear-gradient(125deg, var(--wwyt-navy), var(--wwyt-navy-soft));
}
.newsletter-band .h3 { font-weight: 600; }
.newsletter-band .form-control { border-radius: 2rem; border: none; padding-inline: 1.3rem; }
.site-footer { background: #0c1426; color: #aab2c5; }
.site-footer a { color: #cdd4e4; text-decoration: none; }
.site-footer a:hover { color: var(--wwyt-accent); }
.site-footer h3 { font-weight: 600; }
.site-footer .h6 { letter-spacing: .1em; font-size: .72rem; }
.site-footer li { margin-bottom: .4rem; }

/* ---------- Cookie consent ---------- */
.cookie-consent {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1080;
  max-width: 780px; margin-inline: auto;
  background: rgba(16, 29, 58, .97);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--wwyt-radius); padding: 1.1rem 1.35rem;
  box-shadow: var(--wwyt-shadow-lift);
}
.cookie-consent a { color: var(--wwyt-accent); }

/* ---------- Breadcrumbs & pagination ---------- */
.breadcrumb-item a { text-decoration: none; }
.pagination .page-link {
  color: var(--wwyt-navy);
  border-color: var(--wwyt-line);
  margin: 0 .15rem;
  border-radius: .7rem !important;
  font-weight: 600;
}
.pagination .page-link:hover { background: var(--wwyt-cream); }
.pagination .active .page-link {
  background: var(--wwyt-navy); border-color: var(--wwyt-navy); color: #fff;
}

/* ---------- Author page ---------- */
.author-avatar { object-fit: cover; border: 4px solid var(--wwyt-cream); box-shadow: var(--wwyt-shadow); }

/* ---------- Misc ---------- */
.object-fit-cover { object-fit: cover; }
::selection { background: rgba(244, 169, 21, .35); }

@media (max-width: 575.98px) {
  .hero-img { height: 250px; }
  .city-hero { height: 270px; }
  .hero-band { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
}
