/* =====================================================
   Tripazing.com — Sri Lanka Travel Guide
   Framework: Bulma 0.9.4 (CDN) + custom overrides
   ===================================================== */

:root {
  --primary: #FF6B35;
  --primary-dark: #e55a26;
  --secondary: #1A1A2E;
  --accent: #FFB71D;
  --bg: #F8F7F4;
  --card-bg: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --text-lighter: #9a9a9a;
  --footer-bg: #1A1A2E;
  --footer-text: #c8ccd6;
  --border: #e8e6e1;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 28px rgba(0,0,0,0.14);
  --radius: 8px;
  --radius-lg: 14px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
}

/* =====================================================
   BASE / RESET
   ===================================================== */

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  padding-top: 64px; /* offset for fixed nav */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.65rem; margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-top: 1.75rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }
p.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--primary-dark); text-decoration: underline; }

ul, ol {
  margin-left: 1.4rem;
  margin-bottom: 1rem;
}

li { margin-bottom: 0.4rem; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main { min-height: 60vh; }

/* =====================================================
   BULMA OVERRIDES
   ===================================================== */

.button.is-primary,
.button[class*="is-primary"] {
  background-color: var(--primary) !important;
  border-color: transparent !important;
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius);
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.button.is-primary:hover {
  background-color: var(--primary-dark) !important;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35) !important;
  transform: translateY(-1px);
}

.tag.is-warning {
  background-color: var(--accent) !important;
  color: var(--secondary) !important;
  font-weight: 600;
  font-family: var(--font-heading);
}

.notification.is-warning {
  background-color: #fff8e8;
  color: var(--secondary);
  border-left: 4px solid var(--accent);
}

/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
  background-color: var(--secondary) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  height: 64px;
}

.navbar .container {
  height: 64px;
}

.navbar-brand {
  height: 64px;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--primary);
}

.navbar-item {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: color 0.2s, background-color 0.2s;
}

.navbar-item:hover,
.navbar-item.is-active {
  color: #fff !important;
  background-color: rgba(255,255,255,0.1) !important;
}

.navbar-burger {
  color: #fff !important;
  height: 64px;
}

.navbar-burger span {
  background-color: #fff !important;
  height: 2px !important;
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    padding: 0.75rem 0;
  }

  .navbar-item {
    padding: 0.65rem 1.5rem;
    border-radius: 0;
  }
}

/* =====================================================
   HERO SECTIONS
   ===================================================== */

.site-hero {
  position: relative;
  background-color: var(--secondary);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.site-hero.is-large {
  min-height: 560px;
}

.site-hero.is-medium {
  min-height: 380px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.78) 0%,
    rgba(26, 26, 46, 0.50) 50%,
    rgba(255, 107, 53, 0.22) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff !important;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
}

.hero-cta:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  transition: border-color 0.2s, background-color 0.2s;
  text-decoration: none;
  margin-left: 1rem;
}

.hero-cta-secondary:hover {
  border-color: #fff;
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

/* =====================================================
   SECTION WRAPPERS
   ===================================================== */

.section-padded {
  padding: 4rem 1.5rem;
}

.section-padded-sm {
  padding: 2.5rem 1.5rem;
}

.section-light {
  background-color: var(--bg);
}

.section-white {
  background-color: #fff;
}

.section-dark {
  background-color: var(--secondary);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: rgba(255,255,255,0.9);
}

.section-orange-tint {
  background-color: #fff8f5;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.section-title-center {
  text-align: center;
}

.section-subtitle-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 48px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}

.section-divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   CARDS
   ===================================================== */

.trip-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trip-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.trip-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.trip-card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary) 0%, #2d2d50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-card-image-placeholder i {
  font-size: 3.5rem;
  color: rgba(255,255,255,0.3);
}

.trip-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trip-card-tag {
  display: inline-block;
  background-color: #fff0eb;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.trip-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.trip-card-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.trip-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: gap 0.2s;
  text-decoration: none;
}

.trip-card-link:hover {
  gap: 0.6rem;
  text-decoration: none;
  color: var(--primary-dark);
}

/* =====================================================
   DESTINATION CARDS (City Grid)
   ===================================================== */

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  background: var(--secondary);
}

.dest-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.dest-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}

.dest-card:hover .dest-card-bg {
  transform: scale(1.05);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,46,0.88) 0%, rgba(26,26,46,0.2) 60%, transparent 100%);
}

.dest-card-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}

.dest-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.dest-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}

.dest-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.dest-card-cta:hover {
  gap: 0.6rem;
  color: var(--accent);
  text-decoration: none;
}

/* Placeholder dest card (no image) */
.dest-card-placeholder {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d3068 100%);
}

/* =====================================================
   CATEGORY ICONS GRID
   ===================================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1.25rem;
}

.category-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.category-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #fff0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.category-icon i {
  color: var(--primary);
  font-size: 1.4rem;
}

.category-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--secondary);
}

/* =====================================================
   FEATURE BOXES (How Tripazing Helps)
   ===================================================== */

.feature-box {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.feature-box:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: #fff0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon-wrap i {
  color: var(--primary);
  font-size: 1.6rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.feature-text {
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* =====================================================
   TOUR FEATURE BLOCK
   ===================================================== */

.tour-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--secondary);
  box-shadow: var(--shadow-hover);
}

.tour-feature-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.tour-feature-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2.5rem;
}

.tour-feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 1rem;
}

.tour-feature-text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.tour-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.tour-meta-chip i {
  color: var(--accent);
}

/* =====================================================
   ITINERARY DAY CARDS
   ===================================================== */

.itinerary-day {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.75rem 1.75rem 2.25rem;
  position: relative;
  border-left: 4px solid var(--primary);
  margin-bottom: 1.25rem;
  transition: box-shadow 0.2s;
}

.itinerary-day:hover {
  box-shadow: var(--shadow-hover);
}

.itinerary-day-number {
  position: absolute;
  left: -20px;
  top: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255,107,53,0.4);
}

.itinerary-day-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
}

.itinerary-day-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =====================================================
   BREADCRUMBS
   ===================================================== */

.breadcrumb-wrap {
  background-color: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-sep {
  color: var(--text-lighter);
}

.breadcrumb-current {
  color: var(--primary);
}

/* =====================================================
   BEFORE YOU GO / INFO BOXES
   ===================================================== */

.info-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  height: 100%;
}

.info-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.info-box-icon i {
  color: #fff;
  font-size: 1.3rem;
}

.info-box-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.info-box-text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =====================================================
   STAT CHIPS (hero badges)
   ===================================================== */

.stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.25);
}

.stat-chip i {
  color: var(--accent);
}

/* =====================================================
   CONTENT BODY (article pages)
   ===================================================== */

.content-body {
  max-width: 820px;
}

.content-body h2 {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}

.content-body h2:first-of-type {
  border-top: none;
  margin-top: 1.5rem;
}

.content-body ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.content-body ul li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}

.content-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.7;
}

.content-body ol {
  margin-left: 1.5rem;
}

.content-body strong {
  color: var(--secondary);
}

/* Category sections on explore page */
.content-body h3 {
  color: var(--primary);
  font-size: 1.1rem;
}

/* =====================================================
   SIDEBAR
   ===================================================== */

.sidebar-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--primary);
}

.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-links li {
  margin-bottom: 0;
  padding: 0;
}

.sidebar-links li::before { display: none; }

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.92rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-links li:last-child a { border-bottom: none; }

.sidebar-links a:hover { color: var(--primary); text-decoration: none; }

.sidebar-links a i {
  color: var(--primary);
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

/* =====================================================
   QUICK FACTS TABLE
   ===================================================== */

.quick-facts {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  margin-bottom: 1.5rem;
}

.quick-facts td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.quick-facts td:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  width: 38%;
  white-space: nowrap;
}

.quick-facts tr:last-child td { border-bottom: none; }

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background-color: var(--footer-bg) !important;
  color: var(--footer-text);
  padding: 4rem 1.5rem 0 !important;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.85rem;
}

.footer-brand span {
  color: var(--primary);
}

.site-footer p {
  color: var(--footer-text);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-tag {
  color: var(--accent) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0;
  padding: 0;
}

.footer-links a {
  color: var(--footer-text);
  font-size: 0.92rem;
  display: block;
  padding: 0.3rem 0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* =====================================================
   PAGE — ABOUT
   ===================================================== */

.about-highlight {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d3068 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
}

.about-highlight h3 {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-highlight p {
  color: rgba(255,255,255,0.88);
}

/* =====================================================
   PAGE — GUIDE (anchor targets)
   ===================================================== */

[id] { scroll-margin-top: 80px; }

/* =====================================================
   PAGE — ATTRACTIONS (list + inline cards)
   ===================================================== */

.attraction-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
}

.attraction-item h2 {
  font-size: 1.3rem;
  margin-top: 0;
  padding-top: 0;
  border: none;
}

/* =====================================================
   404 PAGE
   ===================================================== */

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-code {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 6rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.error-text {
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   HERO IMAGE BLOCK (page-level hero image)
   ===================================================== */

.page-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  display: block;
  margin-bottom: 2rem;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-secondary { color: var(--secondary); }
.text-muted   { color: var(--text-light); }
.text-white   { color: #fff; }

.bg-primary   { background-color: var(--primary); }
.bg-accent    { background-color: var(--accent); }

.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }

.font-heading { font-family: var(--font-heading); }

.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mt-2  { margin-top: 2rem; }
.mb-2  { margin-bottom: 2rem; }

.rounded-lg { border-radius: var(--radius-lg); }
.shadow     { box-shadow: var(--shadow); }

/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */

@media screen and (max-width: 768px) {
  body { padding-top: 64px; }

  .site-hero.is-large { min-height: 420px; }
  .site-hero.is-medium { min-height: 280px; }

  .hero-title { font-size: 1.75rem; }
  .hero-subtitle { font-size: 1rem; }

  .hero-cta-secondary {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .section-padded { padding: 2.5rem 1.25rem; }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .itinerary-day {
    padding-left: 1.5rem;
  }

  .itinerary-day-number {
    left: -16px;
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .tour-feature-content {
    padding: 2rem 1.5rem;
  }

  .page-hero-img { height: 220px; }
}

@media screen and (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .error-code { font-size: 4.5rem; }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
  .navbar, .site-footer { display: none; }
  body { padding-top: 0; background: #fff; color: #000; }
  a { color: inherit; text-decoration: underline; }
}
