/* islandparadise.ca — shared base styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean: #1a4a6b;
  --forest: #2d6a4f;
  --sand: #e8d5b0;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #555;
  --ocean-dark: #123348;
  --forest-dark: #1f4d39;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

a { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
  background: var(--ocean-dark);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--sand);
  text-decoration: none;
  font-weight: 600;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--sand); }

/* HERO */
.hero {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-dark) 40%, #0d2535 100%);
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(45,106,79,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26,74,107,0.5) 0%, transparent 50%);
}
.hero-content { position: relative; max-width: 760px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* PAGE HERO (article variant) */
.page-hero {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-dark) 40%, #0d2535 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
}
.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.25;
  max-width: 800px;
  margin: 0 auto 1.2rem;
}
.page-hero .lead {
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto;
}

/* BUTTONS */
.btn-primary {
  background: var(--forest);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--sand); background: rgba(232,213,176,0.1); }
.btn-white {
  background: var(--white);
  color: var(--forest-dark);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
}
.btn-white:hover { background: var(--sand); transform: translateY(-1px); }

/* SECTIONS */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--ocean-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 3rem;
}
.alt-bg { background: #f7f4ee; }

/* CONTENT BLOCKS */
.content-block { margin-bottom: 2.5rem; }
.content-block:last-child { margin-bottom: 0; }
.content-block h3 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  color: var(--ocean);
  margin-bottom: 0.8rem;
}
.content-block h4 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--ocean);
  margin-bottom: 0.6rem;
  margin-top: 1.5rem;
}
.content-block p {
  font-size: 0.97rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  max-width: 780px;
}
.content-block ul, .content-block ol {
  margin: 0.5rem 0 1.2rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}
.content-block ul li, .content-block ol li { margin-bottom: 0.5rem; }

/* ARTICLE WRAP (two column with sidebar) */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* WHY VI */
.why-vi { background: #f7f4ee; }
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.reason-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--forest);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.reason-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--ocean);
  margin-bottom: 0.6rem;
}
.reason-card p { font-size: 0.95rem; color: var(--text-light); }
.reason-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }

/* COMMUNITY CARDS */
.communities { background: var(--white); }
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.community-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
}
.card-header {
  height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.5rem;
}
.card-header-comox { background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%); }
.card-header-victoria { background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean) 100%); }
.card-header-nanaimo { background: linear-gradient(135deg, #3a5f82 0%, #5b8fad 100%); }
.card-header-campbell { background: linear-gradient(135deg, #1f4d39 0%, #3a7d5c 100%); }
.card-header h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.2;
}
.card-header .card-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 0.2rem;
}
.card-body {
  padding: 1.4rem 1.5rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body p { font-size: 0.93rem; color: var(--text-light); flex: 1; }
.card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-link:hover { color: var(--ocean); }
.card-link::after { content: ' →'; }

/* HONEST SECTION */
.honest-section {
  background: var(--ocean-dark);
  color: var(--white);
}
.honest-section h2 { color: var(--sand); }
.honest-section .lead { color: rgba(255,255,255,0.7); }
.honest-section .section-label { color: var(--sand); opacity: 0.7; }
.considerations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.consideration {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1.5rem;
  border-top: 3px solid var(--sand);
}
.consideration h4 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.consideration p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* DARK SECTION */
.dark-section {
  background: var(--ocean-dark);
  color: var(--white);
}
.dark-section h2 { color: var(--sand); }
.dark-section .lead { color: rgba(255,255,255,0.7); }
.dark-section .section-label { color: var(--sand); opacity: 0.7; }
.dark-section .content-block h3 { color: var(--sand); }
.dark-section .content-block h4 { color: rgba(232,213,176,0.9); }
.dark-section .content-block p { color: rgba(255,255,255,0.75); }
.dark-section .content-block ul { color: rgba(255,255,255,0.75); }

/* CTA SECTION */
.cta-section {
  background: var(--forest);
  text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-section .section-label { color: var(--sand); }
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* AIRPORT CARDS */
.airport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.airport-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.airport-card-header {
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.airport-card-header.yyj { background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean) 100%); }
.airport-card-header.ycd { background: linear-gradient(135deg, #3a5f82 0%, #5b8fad 100%); }
.airport-card-header.yqq { background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%); }
.airport-card-header .airport-code {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.05em;
}
.airport-card-header .airport-name {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--white);
}
.airport-card-header .airport-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 0.2rem;
}
.airport-card-body { padding: 2rem; }
.airport-card-body p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1rem; }
.airport-card-body h4 { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--ocean); margin-bottom: 0.5rem; margin-top: 1.5rem; }
.airport-card-body h4:first-child { margin-top: 0; }
.airport-card-body ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--text-light); font-size: 0.93rem; }
.airport-card-body ul li { margin-bottom: 0.4rem; }

/* COMPARISON TABLE */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 640px;
}
.comparison-table thead th {
  background: var(--ocean-dark);
  color: var(--sand);
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comparison-table tbody td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text-light);
}
.comparison-table tbody tr:nth-child(even) { background: #f9f7f2; }
.comparison-table tbody tr:hover { background: #f0ede5; }
.comparison-table .route-name { font-weight: 700; color: var(--text); }
.comparison-table .winner { color: var(--forest); font-weight: 700; }

/* COST CARDS */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
.cost-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.8rem;
  border-left: 4px solid var(--forest);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cost-card.alt { border-left-color: var(--ocean); }
.cost-card h4 { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--ocean); margin-bottom: 0.5rem; }
.cost-card .price-range { font-size: 1.6rem; font-weight: 700; color: var(--forest-dark); margin-bottom: 0.5rem; }
.cost-card p { font-size: 0.9rem; color: var(--text-light); }

/* TIP BOXES */
.tip-box {
  background: #e8f4ec;
  border-left: 4px solid var(--forest);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
}
.tip-box.warning { background: #fef3e0; border-left-color: #e6940a; }
.tip-box.info { background: #e3eef7; border-left-color: var(--ocean); }
.tip-box strong { display: block; margin-bottom: 0.3rem; color: var(--text); font-size: 0.95rem; }
.tip-box p { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* TABLE OF CONTENTS */
.toc {
  background: #f7f4ee;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0 3rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.toc h3 { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--ocean-dark); margin-bottom: 1rem; }
.toc ol { margin: 0 0 0 1.5rem; color: var(--text-light); }
.toc ol li { margin-bottom: 0.4rem; font-size: 0.93rem; }
.toc a { color: var(--forest); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* FLOAT CARDS (dark section) */
.float-card {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1.8rem;
  border-top: 3px solid var(--sand);
  margin-bottom: 1.5rem;
}
.float-card h4 { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--sand); margin-bottom: 0.5rem; }
.float-card p { font-size: 0.93rem; color: rgba(255,255,255,0.75); margin-bottom: 0.6rem; }
.float-card ul { margin: 0.5rem 0 0 1.5rem; color: rgba(255,255,255,0.75); font-size: 0.92rem; }

/* NEIGHBOURHOOD GRID */
.neighbourhood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.neighbourhood-card {
  background: #f7f4ee;
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
}
.neighbourhood-card h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--ocean);
  margin-bottom: 0.4rem;
}
.neighbourhood-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.info-cell {
  background: #f7f4ee;
  border-radius: 6px;
  padding: 1rem 1.2rem;
}
.info-cell .label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.info-cell .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean-dark);
}

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-card {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.6rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--sand);
  margin-bottom: 1rem;
}
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li strong { color: var(--sand); }

.sidebar-nav {
  background: var(--ocean-dark);
  border-radius: 10px;
  padding: 1.4rem;
}
.sidebar-nav h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--sand);
  margin-bottom: 0.8rem;
}
.sidebar-nav ul { list-style: none; padding: 0; margin: 0; }
.sidebar-nav ul li { margin-bottom: 0.4rem; }
.sidebar-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-decoration: none;
}
.sidebar-nav a:hover { color: var(--sand); text-decoration: underline; }

/* LINK STYLES */
.content-block a, .airport-card-body a, .float-card a, .tip-box a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(45,106,79,0.3);
  text-underline-offset: 2px;
}
.dark-section .content-block a, .dark-section .float-card a {
  color: var(--sand);
  text-decoration-color: rgba(232,213,176,0.4);
}
.text-link {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA BAR */
.cta-bar {
  background: var(--forest);
  text-align: center;
  padding: 2rem;
}
.cta-bar p { color: rgba(255,255,255,0.9); margin-bottom: 1rem; }

/* FOOTER */
footer {
  background: #0d1f2d;
  padding: 3rem 2rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .brand-name {
  font-family: 'Lora', serif;
  color: var(--sand);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  display: block;
}
.footer-col h4 {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
}
.affiliate-disclosure { font-style: italic; opacity: 0.6; }

/* DESKTOP RESPONSIVE */
@media (max-width: 860px) {
  .article-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .sidebar { order: -1; }
}
@media (max-width: 640px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .considerations-grid { grid-template-columns: 1fr; }
  .neighbourhood-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===================== */
/* HAMBURGER NAV (MOBILE) */
/* ===================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--sand, rgba(255,255,255,0.85));
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

@media (max-width: 768px) {
  /* Nav collapse */
  .nav-toggle { display: block; }
  .nav-links {
    display: none !important;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--ocean-dark, #123348);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 99;
    list-style: none;
  }
  .nav-links.open {
    display: flex !important;
  }
  nav { position: relative; }

  /* Hero responsive */
  .hero { min-height: 280px; padding: 3rem 1.2rem; }
  .hero h1 { font-size: 1.75rem !important; }
  .page-hero { padding: 3rem 1.2rem 2.5rem; }

  /* Content padding */
  section { padding: 3rem 1rem; }
  .container { padding: 0 4px; }

  /* ALL grids go single column */
  .reasons-grid, .cards-grid, .considerations-grid,
  .cost-grid, .comparison-grid, .info-grid,
  .community-grid, .features-grid, .benefit-grid,
  .stat-grid, .town-grid, .explore-grid,
  .trip-grid, .season-grid, .resource-grid,
  .verdict-columns, .bestfor-grid, .airport-grid,
  .beach-grid, .region-cards, .month-grid,
  .compare-grid, .pros-cons, .place-grid,
  .region-grid, .shops-grid, .calendar-grid,
  .neighbourhood-grid, .info-grid, .card-grid,
  .product-grid, .feature-grid, .category-grid,
  .article-wrap, .content-wrap {
    grid-template-columns: 1fr !important;
  }

  /* Tables scroll horizontally */
  table, .comparison-table-wrap, .table-wrap, .price-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Images responsive */
  img { max-width: 100%; height: auto; }

  /* Footer single column */
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Text sizing */
  body { font-size: 16px; }
  h2 { font-size: 1.35rem !important; }
  h3 { font-size: 1.15rem !important; }

  /* Cards */
  .airport-card-header { padding: 1.2rem 1rem; }
  .airport-card-body { padding: 1.2rem 1rem; }
  .card-header { height: auto; min-height: 80px; }

  /* Sidebar */
  .sidebar { position: static; width: 100% !important; margin-top: 2rem; }
  .main-content { width: 100% !important; }

  /* Callouts */
  .tip-box, .callout, .warning, .info-box, .warning-box {
    padding: 12px 14px;
    margin: 16px 0;
  }

  /* Prevent horizontal overflow */
  body { overflow-x: hidden; }
  pre, code { overflow-x: auto; white-space: pre-wrap; word-wrap: break-word; }
}
