/*
Theme Name: ZippyTripz
Theme URI: https://zippytripz.com
Author: ZippyTripz
Author URI: https://zippytripz.com
Description: A high-converting travel affiliate theme for ZippyTripz.com. Built for Travel Payouts integration, SEO, and email capture.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zippytripz
Tags: travel, affiliate, blog, seo, responsive
*/

/* ============================================
   ZIPPYTRIPZ THEME - MAIN STYLESHEET
   Color Palette:
   --ocean:   #0B4F8A  (primary)
   --sunset:  #E8621A  (CTA / accent)
   --sand:    #FDF6EC  (alt background)
   --ink:     #111827  (body text)
   --mist:    #6B7280  (secondary text)
   ============================================ */

/* ---------- CSS RESET & VARIABLES ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean:        #0B4F8A;
  --ocean-light:  #1A72C7;
  --ocean-pale:   #E6F1FB;
  --sunset:       #E8621A;
  --sunset-light: #F5874A;
  --sand:         #FDF6EC;
  --ink:          #111827;
  --mist:         #6B7280;
  --border:       rgba(0,0,0,0.08);
  --white:        #FFFFFF;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    14px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-width:    1200px;
  --content-width: 820px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ocean); }
ul, ol { padding-left: 1.5rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--sunset);
  color: var(--white);
}
.btn-primary:hover { background: #c9541a; color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--ocean);
  color: var(--white);
}
.btn-secondary:hover { background: var(--ocean-light); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-outline:hover { background: var(--ocean); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ---------- SITE HEADER / NAV ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 1rem;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ocean);
  text-decoration: none;
  white-space: nowrap;
}
.site-logo span { color: var(--sunset); }

/* Primary nav */
#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
#primary-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mist);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
#primary-nav a:hover { color: var(--ocean); background: var(--ocean-pale); }

/* Dropdown */
#primary-nav li { position: relative; }
#primary-nav .has-dropdown > a::after { content: ' v'; font-size: 10px; }
#primary-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 8px;
  z-index: 999;
}
#primary-nav li:hover .dropdown-menu { display: block; }
#primary-nav .dropdown-menu a { color: var(--ink); font-size: 13px; }
#primary-nav .dropdown-menu a:hover { color: var(--ocean); background: var(--ocean-pale); }

.header-cta { flex-shrink: 0; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- HERO ---------- */
.hero-section {
  background: linear-gradient(160deg, #0B4F8A 0%, #0d3d6e 55%, #1a2a4a 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(232,98,26,0.10);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(232,98,26,0.18);
  color: #F5874A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero-section h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.hero-section h1 em { font-style: normal; color: #F5874A; }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Search Widget */
.search-widget-wrap {
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.search-tabs {
  display: flex;
  gap: 4px;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 10px;
}
.search-tab {
  flex: 1;
  padding: 9px 6px;
  background: transparent;
  border: none;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--mist);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.search-tab.active {
  background: var(--white);
  color: var(--ocean);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.search-tab-content { display: none; }
.search-tab-content.active { display: block; }

/* Travel Payouts widget overrides */
.tp-widget-wrapper { width: 100% !important; }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: #f8f9fc;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mist);
}
.trust-item svg { color: var(--ocean); width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- DEALS TICKER ---------- */
.deals-ticker {
  background: var(--ocean);
  padding: 10px 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}
.deals-ticker-label {
  background: var(--sunset);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.deals-ticker-scroll {
  display: flex;
  gap: 2.5rem;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.deals-ticker-scroll:hover { animation-play-state: paused; }
.ticker-item { color: rgba(255,255,255,0.85); font-size: 13px; }
.ticker-item strong { color: var(--white); }

/* ---------- SECTIONS ---------- */
.section { padding: 4rem 1.5rem; }
.section-alt { background: var(--sand); }
.section-dark { background: linear-gradient(135deg, var(--ocean), var(--ocean-light)); color: var(--white); }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-header h2 { margin-bottom: 0; }
.see-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ocean);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- CATEGORY GRID ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.category-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.category-card:hover {
  border-color: var(--ocean-light);
  box-shadow: 0 4px 16px rgba(11,79,138,0.12);
  transform: translateY(-2px);
  color: inherit;
}
.category-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.category-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.category-desc { font-size: 11px; color: var(--mist); }

/* ---------- DESTINATION CARDS ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
  min-height: 220px;
}
.dest-card.wide { grid-column: span 2; min-height: 260px; }
.dest-card-bg {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.dest-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}
.dest-card-info { position: relative; z-index: 1; width: 100%; }
.dest-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 3px;
}
.dest-card.wide .dest-card-name { font-size: 1.5rem; }
.dest-card-price { font-size: 12px; color: rgba(255,255,255,0.80); }
.dest-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--sunset);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  z-index: 2;
}

/* ---------- BLOG CARDS ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--ocean-pale);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--sunset);
  margin-bottom: 7px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--mist);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- EMAIL CAPTURE ---------- */
.email-section {
  text-align: center;
  padding: 4.5rem 1.5rem;
  background: linear-gradient(135deg, #0B4F8A, #1A72C7);
}
.email-eyebrow {
  display: inline-block;
  background: rgba(232,98,26,0.25);
  color: #F5874A;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.email-section h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.6rem;
}
.email-subtitle { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 2rem; }
.email-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 0.75rem;
}
.email-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.email-form button {
  background: var(--sunset);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.email-form button:hover { background: #c9541a; }
.email-disclaimer { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ---------- FAQ SECTION ---------- */
.faq-section { padding: 3.5rem 1.5rem; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ocean);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-top: 0.75rem;
  font-size: 14px;
  color: var(--mist);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- MONEY PAGE ---------- */
.money-page-hero {
  background: linear-gradient(160deg, var(--ocean) 0%, #0d3d6e 100%);
  padding: 4rem 1.5rem;
  color: var(--white);
  text-align: center;
}
.money-page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.money-page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; }
.widget-section {
  background: var(--sand);
  padding: 3rem 1.5rem;
  text-align: center;
}
.widget-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.content-section { max-width: var(--content-width); margin: 0 auto; padding: 3rem 1.5rem; }

/* ---------- COMPARISON TABLE ---------- */
.compare-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.compare-table th {
  background: var(--ocean);
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table tr:hover td { background: var(--ocean-pale); }
.compare-table .check { color: #16a34a; font-weight: 700; }
.compare-table .cross { color: #dc2626; }
.compare-table .highlight td { background: #FFF8F0; font-weight: 600; }

/* ---------- DESTINATION HUB ---------- */
.hub-hero {
  background: linear-gradient(160deg, #0B4F8A, #0d3d6e);
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--white);
}
.hub-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.hub-intro { max-width: var(--content-width); margin: 0 auto; padding: 2.5rem 1.5rem; }
.hub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}
.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}
.hub-card:hover { box-shadow: var(--shadow-md); }
.hub-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.hub-card p { font-size: 13px; color: var(--mist); margin-bottom: 0.75rem; }

/* ---------- BLOG SINGLE ---------- */
.single-post-header { padding: 3rem 1.5rem 2rem; max-width: var(--content-width); margin: 0 auto; }
.post-category-badge {
  display: inline-block;
  background: var(--ocean-pale);
  color: var(--ocean);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.post-meta { font-size: 13px; color: var(--mist); margin-top: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.post-content h2 { margin: 2rem 0 1rem; }
.post-content h3 { margin: 1.5rem 0 0.75rem; }
.post-content ul, .post-content ol { margin: 1rem 0; }
.post-content li { margin-bottom: 0.4rem; }
.post-content .affiliate-box {
  background: var(--ocean-pale);
  border-left: 4px solid var(--ocean);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem;
  margin: 2rem 0;
}
.post-content .affiliate-box p { font-size: 14px; margin-bottom: 0.5rem; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.sidebar-widget h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--mist);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-email-widget { background: var(--ocean); color: var(--white); }
.sidebar-email-widget h4 { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }
.sidebar-email-widget p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.sidebar-email-widget input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 8px;
}
.sidebar-email-widget button {
  width: 100%;
  background: var(--sunset);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Related posts */
.related-posts { padding: 3rem 1.5rem; background: var(--sand); }
.related-posts h2 { margin-bottom: 1.5rem; }

/* ---------- FOOTER ---------- */
#site-footer {
  background: #0d1f35;
  color: rgba(255,255,255,0.6);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 1.5rem 2.5rem;
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer-brand-logo span { color: #F5874A; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--sunset); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--mist); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge-sunset { background: rgba(232,98,26,0.12); color: var(--sunset); }
.badge-ocean  { background: var(--ocean-pale); color: var(--ocean); }
.breadcrumbs { font-size: 13px; color: var(--mist); padding: 0.75rem 0; }
.breadcrumbs a { color: var(--ocean-light); }
.breadcrumbs span { margin: 0 6px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card.wide { grid-column: span 2; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

@media (max-width: 768px) {
  #primary-nav, .header-cta { display: none; }
  #primary-nav.open { display: block; position: absolute; top: 66px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 1rem; }
  #primary-nav.open ul { flex-direction: column; gap: 0; }
  #primary-nav.open .dropdown-menu { position: static; box-shadow: none; border: none; background: #f8f9fc; }
  .nav-toggle { display: flex; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .email-form { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip-inner { gap: 0.75rem; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.wide { grid-column: span 1; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .search-tabs { flex-wrap: wrap; }
  .search-tab { flex: 1 1 45%; }
}
