/* =============================================
   THE TRAVEL SPARK — style.css
   Design System: Light Lime Green — fresh, vivid, premium
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  /* Brand Colors */
  --orange:        var(--color-sage);
  --orange-light:  var(--color-sage-pale);
  --orange-dark:   var(--color-forest);
  --blue:          var(--color-sage);
  --blue-light:    var(--color-sage-light);
  --dark:          var(--color-forest);
  --muted:         var(--color-text-muted);
  --route:         var(--color-text-muted);
  --border:        var(--color-border);
  --border-warm:   var(--color-border);

  /* Backgrounds */
  --white:         var(--color-bg-page);
  --off-white:     var(--color-bg-section);
  --hero-bg:       var(--color-bg-page);
  --green-light:   var(--color-sage-pale);
  --green-border:  var(--color-sage-light);
  --green-icon-bg: rgba(81,230,76,0.12);

  /* Legacy aliases — mapped to new variables from variables.css */
  --navy:          var(--color-forest);
  --navy-mid:      var(--color-forest);
  --navy-light:    var(--color-sage);
  --pink:          var(--color-sage);
  --pink-light:    var(--color-sage-light);
  --pink-dark:     var(--color-forest);
  --teal:          var(--color-sage);
  --teal-light:    var(--color-sage-pale);
  --text:          var(--color-text-primary);
  --text-light:    var(--color-text-secondary);
  --gray-50:       var(--color-bg-section);
  --gray-100:      var(--color-border);
  --gray-300:      var(--color-border-strong);
  --gray-600:      var(--color-text-muted);
  --yellow:        var(--color-gold);
  --yellow-dark:   var(--color-gold-dark);
  --yellow-light:  rgba(212,160,23,0.10);
  --off-white-old: var(--color-bg-section);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', system-ui, sans-serif;

  /* Spacing & Shape */
  --radius:        16px;   /* --radius-lg */
  --radius-sm:     4px;
  --radius-lg:     16px;

  /* Shadows */
  --shadow-sm:     var(--shadow-card);
  --shadow-md:     var(--shadow-hover);
  --shadow-lg:     0 16px 48px rgba(13, 46, 82, 0.18);
  --shadow-pink:   none;

  /* Transitions */
  --transition:    all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background: var(--color-bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ── */
section { padding: 3rem 0; }

/* ── Section Labels (Eyebrow) ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);  /* warm gold eyebrow label */
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-title .accent {
  color: var(--color-gold);  /* warm honey accent on section titles */
  font-style: italic;
}

.section-sub {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.65;
  max-width: 560px;
  font-weight: 400;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-forest);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-forest);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--color-bg-page);
  color: var(--color-sage);
  border-color: var(--color-sage);
}

.btn-outline:hover {
  background: var(--color-sage-pale);
  transform: translateY(-1px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--color-sage);
  border-color: var(--color-sage);
  border-radius: var(--radius-md);
}

.btn-outline-navy:hover {
  background: var(--color-sage);
  color: var(--color-text-on-sage);
  transform: translateY(-1px);
}

/* ── Promo Banner ── */
.promo-banner {
  background: linear-gradient(90deg, var(--color-forest) 0%, var(--color-sage) 100%);
  text-align: center;
  padding: 11px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}

.promo-banner a { color: white; text-decoration: underline; margin-left: 8px; }
.promo-banner .close-banner {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
}
.promo-banner .close-banner:hover { opacity: 1; }

/* ── Utilities ── */
.text-pink  { color: var(--color-sage); }
.text-navy  { color: var(--color-forest); }
.fw-600     { font-weight: 600; }
.mt-8       { margin-top: 8px; }
.swiper-pagination-bullet-active { background: var(--color-sage) !important; }

/* ==========================================================
   GLOBAL SLATE & GOLD RETHEME (Applied to all pages)
   Overrides legacy .page-hero and .package-hero styles
   ========================================================== */

/* 1. Light Sky-Blue Hero Backgrounds */
.page-hero, .package-hero, .cruise-hero {
  background: linear-gradient(135deg, #C8D8EA 0%, #D8E6F3 60%, #EEF2F7 100%) !important;
}

/* 2. Hide legacy dark overlays and background images to match the clean Slate theme */
.page-hero::before, 
.package-hero-bg, .package-hero-overlay, 
.cruise-hero-bg, .cruise-hero-overlay {
  display: none !important;
}

/* 3. Deep Slate Typography for Heroes */
.page-hero h1, .package-hero h1, .cruise-hero h1, .package-title {
  color: var(--primary-dark) !important;
}

.page-hero h1 span, .cruise-hero h1 span {
  color: var(--primary) !important;
}

.page-hero p, .package-hero p, .cruise-hero p {
  color: var(--primary-dark) !important;
  opacity: 0.8 !important;
}

/* Breadcrumbs */
.crumb {
  color: var(--primary-dark) !important;
  opacity: 0.7 !important;
}
.crumb a {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

/* Badges & Meta info in Hero */
.hero-badge, .meta-item {
  color: var(--primary-dark) !important;
  border-color: var(--primary) !important;
  background: rgba(13, 46, 82, 0.08) !important;
}
.meta-item .icon {
  color: var(--primary) !important;
}

/* 4. Global Button Retheme (Gold & Slate) */
.btn-primary, .pkg-btn, .form-submit {
  background: var(--accent) !important;
  color: var(--primary-dark) !important;
  border: 2px solid var(--accent) !important;
  box-shadow: none !important;
}
.btn-primary:hover, .pkg-btn:hover, .form-submit:hover {
  background: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-1px) !important;
}

.btn-outline, .btn-outline-navy {
  background: transparent !important;
  color: var(--primary-dark) !important;
  border: 2px solid var(--primary-dark) !important;
}
.btn-outline:hover, .btn-outline-navy:hover {
  background: rgba(13, 46, 82, 0.1) !important;
  color: var(--primary-dark) !important;
}
