/*
Theme Name:  Voyager Travel
Theme URI:   https://voyagertravel.com.au/
Author:      Voyager Travel
Author URI:  https://voyagertravel.com.au/
Description: Airy luxury travel magazine WordPress theme for Voyager Travel Australia. Elementor-compatible. Features a warm cream and coral palette, Playfair Display serif headings, editorial destination cards, and full-bleed imagery — inspired by boutique travel journals. Covers Australian and international travel, tours, accommodation, and holiday planning.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: voyager-travel
Tags:        elementor, blog, travel, magazine, custom-logo, custom-menu, featured-images, full-width-template, sticky-header, translation-ready, light
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      8.0
*/

/* =============================================================
   CSS CUSTOM PROPERTIES
   ============================================================= */
:root {
  /* --- Palette --- */
  --vt-cream:         #FAFAF7;   /* Creamy white page background         */
  --vt-white:         #FFFFFF;   /* Pure white                            */
  --vt-sand:          #F5EBD8;   /* Warm sand — section accents           */
  --vt-sand-dark:     #EDD9BE;   /* Deeper sand for borders               */

  --vt-coral:         #E8553A;   /* Sunset coral — primary accent         */
  --vt-coral-light:   #F5765E;   /* Light coral hover                     */
  --vt-coral-pale:    #FDEEE9;   /* Pale coral tint for BG sections       */

  --vt-ocean:         #0C5C8E;   /* Deep ocean blue — secondary accent    */
  --vt-ocean-light:   #1A7EB8;   /* Lighter ocean hover                   */
  --vt-ocean-pale:    #E8F3FA;   /* Very pale ocean tint                  */

  --vt-gold:          #C99A3E;   /* Warm gold — stars, highlights         */
  --vt-gold-light:    #E5B95A;

  /* --- Text --- */
  --vt-ink:           #1E1E2A;   /* Near-black ink — headings             */
  --vt-body:          #3D3D4A;   /* Dark grey — body copy                 */
  --vt-muted:         #7A7A8C;   /* Muted text                            */
  --vt-light-text:    rgba(255,255,255,0.90); /* White on dark BG          */
  --vt-dimmed-text:   rgba(255,255,255,0.65); /* Dimmed white              */

  /* --- Structure --- */
  --vt-border:        #EAE5DE;   /* Warm border                           */
  --vt-border-dark:   #D4CBBD;   /* Darker warm border                    */

  /* --- Typography --- */
  --vt-font-serif:    'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --vt-font-sans:     'Raleway', 'Gill Sans', 'Helvetica Neue', Arial, sans-serif;

  /* --- Spacing --- */
  --vt-space-xs:      0.5rem;
  --vt-space-sm:      1rem;
  --vt-space-md:      2rem;
  --vt-space-lg:      4.5rem;
  --vt-space-xl:      7rem;

  /* --- Radii & shadows --- */
  --vt-radius-sm:     6px;
  --vt-radius:        12px;
  --vt-radius-lg:     20px;
  --vt-radius-xl:     30px;
  --vt-shadow-sm:     0 2px 10px rgba(30,30,42,.06);
  --vt-shadow:        0 4px 24px rgba(30,30,42,.09);
  --vt-shadow-hover:  0 12px 40px rgba(30,30,42,.14);
  --vt-shadow-card:   0 2px 16px rgba(30,30,42,.07);

  /* --- Max widths --- */
  --vt-max:          1200px;
  --vt-content-max:   800px;
}

/* =============================================================
   RESET / BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--vt-font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--vt-body);
  background: var(--vt-cream);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--vt-coral);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--vt-coral-light); }
a:focus-visible {
  outline: 2px solid var(--vt-coral);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =============================================================
   TYPOGRAPHY — Serif headings are the signature of this theme
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vt-font-serif);
  font-weight: 700;
  line-height: 1.22;
  color: var(--vt-ink);
  margin-top: 0;
  margin-bottom: .6em;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* Italic serif accent — travel sites love this */
.vt-serif-italic {
  font-family: var(--vt-font-serif);
  font-style: italic;
  font-weight: 400;
}

p { margin-top: 0; margin-bottom: 1.4em; }
ul, ol { padding-left: 1.5em; }

blockquote {
  border-left: 3px solid var(--vt-coral);
  padding: 1.25em 2em;
  margin: 2em 0;
  background: var(--vt-coral-pale);
  border-radius: 0 var(--vt-radius) var(--vt-radius) 0;
  font-family: var(--vt-font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--vt-ink);
}

hr {
  border: none;
  border-top: 1px solid var(--vt-border);
  margin: 2.5rem 0;
}

/* =============================================================
   LAYOUT
   ============================================================= */
.site-container { display: flex; flex-direction: column; min-height: 100vh; }
.site-main      { flex: 1 0 auto; }

.vt-container {
  width: 100%;
  max-width: var(--vt-max);
  margin-inline: auto;
  padding-inline: 1.75rem;
}

.vt-section { padding-block: var(--vt-space-lg); }

/* Section intro / eyebrow label */
.vt-eyebrow {
  display: inline-block;
  font-family: var(--vt-font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vt-coral);
  margin-bottom: .8rem;
}

/* Decorative divider dots */
.vt-divider {
  display: flex;
  align-items: center;
  gap: .4rem;
  justify-content: center;
  margin: .75rem 0 1.5rem;
}
.vt-divider span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--vt-coral);
}
.vt-divider span:nth-child(2) { background: var(--vt-gold); }
.vt-divider span:nth-child(3) { background: var(--vt-ocean); }

/* =============================================================
   SKIP LINK
   ============================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: .75rem 1.5rem;
  background: var(--vt-coral);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 var(--vt-radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* =============================================================
   HEADER — white, elegant, with coral underline on active
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--vt-white);
  box-shadow: 0 1px 0 var(--vt-border), 0 2px 20px rgba(30,30,42,.05);
  transition: box-shadow .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(30,30,42,.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 2rem;
}

/* Branding */
.site-branding a {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.vt-logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--vt-coral), var(--vt-coral-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-title-text {
  font-family: var(--vt-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vt-ink);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.site-title-text span { color: var(--vt-coral); }
.custom-logo { height: 48px; width: auto; }

/* Nav */
.primary-navigation { display: flex; align-items: center; }
.primary-navigation .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.primary-navigation .nav-menu > li { position: relative; }
.primary-navigation .nav-menu > li > a {
  display: block;
  padding: .5rem 1.1rem;
  font-family: var(--vt-font-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--vt-body);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.primary-navigation .nav-menu > li > a:hover,
.primary-navigation .nav-menu .current-menu-item > a,
.primary-navigation .nav-menu .current-page-ancestor > a {
  color: var(--vt-coral);
  border-bottom-color: var(--vt-coral);
}

/* Dropdown */
.primary-navigation .nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 210px;
  background: var(--vt-white);
  border-radius: 0 0 var(--vt-radius) var(--vt-radius);
  border-top: 3px solid var(--vt-coral);
  padding: .6rem 0;
  display: none;
  list-style: none;
  z-index: 100;
  box-shadow: var(--vt-shadow);
}
.primary-navigation .nav-menu li:hover > .sub-menu { display: block; }
.primary-navigation .nav-menu .sub-menu a {
  display: block;
  padding: .5rem 1.25rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vt-body);
  border-bottom: none;
  transition: color .2s, background .2s;
}
.primary-navigation .nav-menu .sub-menu a:hover {
  color: var(--vt-coral);
  background: var(--vt-coral-pale);
}

/* Header CTA + toggle */
.header-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--vt-border-dark);
  border-radius: var(--vt-radius-sm);
  padding: .4rem .55rem;
  cursor: pointer;
  color: var(--vt-ink);
}
.menu-toggle svg { display: block; width: 22px; height: 22px; }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .8em 2em;
  border-radius: 100px; /* pill shape — completely different from previous themes */
  font-family: var(--vt-font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  line-height: 1;
}

.btn-primary,
button[type="submit"],
input[type="submit"] {
  background: var(--vt-coral);
  color: #fff;
  border-color: var(--vt-coral);
}
.btn-primary:hover,
button[type="submit"]:hover {
  background: var(--vt-coral-light);
  border-color: var(--vt-coral-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,85,58,.3);
}

.btn-outline {
  background: transparent;
  color: var(--vt-coral);
  border-color: var(--vt-coral);
}
.btn-outline:hover {
  background: var(--vt-coral);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ocean {
  background: var(--vt-ocean);
  color: #fff;
  border-color: var(--vt-ocean);
}
.btn-ocean:hover {
  background: var(--vt-ocean-light);
  border-color: var(--vt-ocean-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,92,142,.28);
}

.btn-white {
  background: #fff;
  color: var(--vt-coral);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--vt-sand);
  color: var(--vt-coral);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* Icon arrow in btn */
.btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* =============================================================
   CATEGORY / DESTINATION BADGE
   ============================================================= */
.vt-badge {
  display: inline-block;
  padding: .28em .9em;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--vt-coral-pale);
  color: var(--vt-coral);
  border: 1px solid rgba(232,85,58,.18);
  transition: background .2s, color .2s;
}
.vt-badge:hover { background: var(--vt-coral); color: #fff; }
.vt-badge.ocean { background: var(--vt-ocean-pale); color: var(--vt-ocean); border-color: rgba(12,92,142,.18); }
.vt-badge.ocean:hover { background: var(--vt-ocean); color: #fff; }
.vt-badge.sand  { background: var(--vt-sand); color: #866A38; border-color: var(--vt-sand-dark); }

/* =============================================================
   HERO — full-bleed with editorial serif overlay
   ============================================================= */
.vt-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vt-ocean);
}
.vt-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.vt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(12,40,70,.75) 0%,
    rgba(12,40,70,.45) 55%,
    rgba(12,40,70,.12) 100%
  );
}
.vt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: 6rem;
}
.vt-hero-content .vt-eyebrow { color: var(--vt-gold); }
.vt-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.vt-hero-content h1 em { color: var(--vt-gold); font-style: italic; }
.vt-hero-content p {
  font-size: 1.1rem;
  color: var(--vt-dimmed-text);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.vt-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Scroll indicator */
.vt-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================================
   DESTINATION CARDS — editorial style with image overlay
   ============================================================= */
.vt-card {
  background: var(--vt-white);
  border-radius: var(--vt-radius-lg);
  overflow: hidden;
  box-shadow: var(--vt-shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.vt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vt-shadow-hover);
}

.vt-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.vt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.vt-card:hover .vt-card-img img { transform: scale(1.08); }

/* Badge on top of image */
.vt-card-img .vt-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  backdrop-filter: blur(6px);
}

/* Gradient overlay on card image bottom */
.vt-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(30,30,42,.35), transparent);
  pointer-events: none;
}

.vt-card-body {
  padding: 1.5rem 1.6rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vt-card-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  color: var(--vt-muted);
  margin-bottom: .6rem;
  flex-wrap: wrap;
}
.vt-card-meta .sep { color: var(--vt-border-dark); }

.vt-card-title {
  font-family: var(--vt-font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--vt-ink);
  margin-bottom: .65rem;
  letter-spacing: -.015em;
}
.vt-card-title a { color: inherit; }
.vt-card-title a:hover { color: var(--vt-coral); }

.vt-card-excerpt {
  font-size: .875rem;
  color: var(--vt-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.vt-read-link {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vt-coral);
  transition: gap .2s;
}
.vt-read-link:hover { color: var(--vt-coral-light); gap: .65em; }

/* =============================================================
   DESTINATION OVERLAY CARDS (featured destinations grid)
   ============================================================= */
.vt-dest-card {
  position: relative;
  border-radius: var(--vt-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.vt-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.vt-dest-card:hover img { transform: scale(1.1); }
.vt-dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,42,.80) 0%, rgba(30,30,42,.1) 60%);
  transition: background .3s;
}
.vt-dest-card:hover .vt-dest-card-overlay {
  background: linear-gradient(to top, rgba(30,30,42,.88) 0%, rgba(30,30,42,.2) 60%);
}
.vt-dest-card-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
}
.vt-dest-card-label h3 {
  font-family: var(--vt-font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .25rem;
  line-height: 1.15;
}
.vt-dest-card-label span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vt-gold);
}

/* =============================================================
   SERVICE / FEATURE ICONS
   ============================================================= */
.vt-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.vt-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--vt-radius);
  background: var(--vt-coral-pale);
  color: var(--vt-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  transition: background .2s, color .2s;
}
.vt-feature:hover .vt-feature-icon { background: var(--vt-coral); color: #fff; }
.vt-feature-body h4 {
  font-size: 1.05rem;
  margin-bottom: .3rem;
  color: var(--vt-ink);
}
.vt-feature-body p {
  font-size: .875rem;
  color: var(--vt-muted);
  margin: 0;
}

/* =============================================================
   TESTIMONIALS — card with quote mark
   ============================================================= */
.vt-testimonial {
  background: var(--vt-white);
  border-radius: var(--vt-radius-lg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--vt-shadow-card);
  position: relative;
}
.vt-testimonial::before {
  content: '\201C';
  font-family: var(--vt-font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--vt-coral);
  opacity: .15;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
}
.vt-testimonial-text {
  font-family: var(--vt-font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--vt-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.vt-testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.vt-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vt-coral), var(--vt-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.vt-testimonial-name {
  font-weight: 700;
  font-size: .875rem;
  color: var(--vt-ink);
}
.vt-testimonial-role {
  font-size: .75rem;
  color: var(--vt-muted);
}
.vt-stars { color: var(--vt-gold); font-size: .9rem; margin-bottom: .5rem; }

/* =============================================================
   SAND SECTION (warm background sections)
   ============================================================= */
.vt-sand-section {
  background: var(--vt-sand);
}
.vt-sand-section h2,
.vt-sand-section h3 { color: var(--vt-ink); }

/* =============================================================
   POST HEADER BANNER
   ============================================================= */
.vt-page-header {
  background: linear-gradient(135deg, var(--vt-ocean) 0%, #0a4870 100%);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.vt-page-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.vt-page-header::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.vt-page-header h1 { color: #fff; max-width: 800px; margin-top: 1rem; }
.vt-page-header .vt-eyebrow { color: var(--vt-gold); }

/* =============================================================
   BREADCRUMBS
   ============================================================= */
.vt-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.vt-breadcrumbs a { color: rgba(255,255,255,.7); transition: color .2s; }
.vt-breadcrumbs a:hover { color: var(--vt-gold); }
.vt-breadcrumbs .sep { color: rgba(255,255,255,.3); }
.vt-breadcrumbs.light { color: var(--vt-muted); }
.vt-breadcrumbs.light a { color: var(--vt-body); }
.vt-breadcrumbs.light .sep { color: var(--vt-border-dark); }

/* =============================================================
   SIDEBAR
   ============================================================= */
.vt-sidebar-widget {
  background: var(--vt-white);
  border-radius: var(--vt-radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--vt-shadow-card);
}
.vt-sidebar-title {
  font-family: var(--vt-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vt-ink);
  padding-bottom: .75rem;
  margin-bottom: 1.1rem;
  border-bottom: 2px solid var(--vt-sand);
  position: relative;
}
.vt-sidebar-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--vt-coral);
}

/* =============================================================
   FORMS
   ============================================================= */
.vt-form input[type="text"],
.vt-form input[type="email"],
.vt-form select,
.vt-form textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: .85rem 1.2rem;
  border: 1.5px solid var(--vt-border);
  border-radius: var(--vt-radius);
  font-family: var(--vt-font-sans);
  font-size: .95rem;
  color: var(--vt-body);
  background: var(--vt-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.vt-form input:focus,
.vt-form textarea:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: var(--vt-coral);
  box-shadow: 0 0 0 3px rgba(232,85,58,.1);
}
.vt-form label, .wpcf7 label {
  display: block;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--vt-ink);
  margin-bottom: .45rem;
}
.wpcf7-submit {
  background: var(--vt-coral);
  color: #fff;
  border: 2px solid var(--vt-coral);
  border-radius: 100px;
  padding: .85em 2.5em;
  font-family: var(--vt-font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.wpcf7-submit:hover {
  background: var(--vt-coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,85,58,.3);
}

/* =============================================================
   PAGINATION
   ============================================================= */
.vt-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.vt-pagination a,
.vt-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-family: var(--vt-font-sans);
  font-size: .85rem;
  font-weight: 700;
  border: 1.5px solid var(--vt-border);
  color: var(--vt-body);
  transition: background .2s, color .2s, border-color .2s;
}
.vt-pagination a:hover,
.vt-pagination span.current {
  background: var(--vt-coral);
  color: #fff;
  border-color: var(--vt-coral);
}

/* =============================================================
   ENTRY CONTENT
   ============================================================= */
.entry-content { max-width: var(--vt-content-max); }
.entry-content h2 { margin-top: 2.5rem; }
.entry-content h3 { margin-top: 2rem; }
.entry-content img { border-radius: var(--vt-radius); margin-block: 1.75rem; }

/* Pull quote for travel articles */
.entry-content .wp-block-pullquote {
  border-top: 4px solid var(--vt-coral);
  border-bottom: 4px solid var(--vt-coral);
  padding: 2rem;
  font-family: var(--vt-font-serif);
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  color: var(--vt-ink);
}

/* =============================================================
   FOOTER — warm sand with ocean accent
   ============================================================= */
.site-footer {
  background: var(--vt-ink);
  color: rgba(255,255,255,.7);
}

.footer-top {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand-tagline {
  margin-top: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--vt-font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vt-gold);
  margin-bottom: 1.1rem;
  font-style: italic;
}

.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: .5rem; }
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--vt-gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.footer-contact-icon { color: var(--vt-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--vt-gold); }

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover {
  background: var(--vt-coral);
  border-color: var(--vt-coral);
  color: #fff;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { margin: 0; font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal a {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-left: 1.5rem;
}
.footer-legal a:hover { color: var(--vt-gold); }

/* =============================================================
   404 / SEARCH
   ============================================================= */
.error-404 { text-align: center; padding: 7rem 0; }
.error-code {
  font-family: var(--vt-font-serif);
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  color: var(--vt-coral);
  opacity: .12;
  display: block;
}

/* =============================================================
   ELEMENTOR OVERRIDES
   ============================================================= */
.elementor-section-wrap,
.elementor-widget-container { font-family: var(--vt-font-sans); }
.elementor-template-full-width .site-main { padding: 0; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --vt-space-lg: 3.5rem;
    --vt-space-xl: 5rem;
  }
  .header-inner { height: 68px; }

  .primary-navigation {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--vt-white);
    border-top: 1px solid var(--vt-border);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 12px 40px rgba(30,30,42,.12);
    transform: translateY(-120%);
    transition: transform .3s ease;
    z-index: 999;
  }
  .primary-navigation.is-open { transform: translateY(0); }
  .primary-navigation .nav-menu { flex-direction: column; gap: 0; }
  .primary-navigation .nav-menu > li > a {
    padding: .7rem 0;
    border-bottom: 1px solid var(--vt-border);
    border-left: none;
  }
  .primary-navigation .nav-menu .sub-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    display: block;
    border-top: none;
  }
  .menu-toggle { display: flex; }
  .header-actions .btn { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal a { margin-left: 0; margin-right: .75rem; }

  .vt-hero { min-height: 75vh; }
  .vt-hero-content { padding-block: 4rem; }
}

@media (max-width: 480px) {
  .vt-hero-content h1 { font-size: 2.4rem; }
  .error-code { font-size: 7rem; }
  .vt-hero-actions { flex-direction: column; align-items: flex-start; }
}
