:root {
  --primary: #2E8B57;        /* main green */
  --primary-dark: #1E6140;   /* darker green */
  --secondary: #F4EBD0;      /* warm sand / accent */
  --highlight: #FFD700;      /* gold */
  --text-dark: #2F2F2F;
  --text-light: #7A7A7A;
  --white: #ffffff;
  --border: #E0E0D1;
  --shadow: rgba(0, 0, 0, 0.06);
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 80vh;
  background: url('/images/travel1.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 4rem 0 2rem;
  color: var(--text-dark);
}

/* ===== EXPLORE & TRIPS CONTAINERS ===== */
.explore-container,
.trips-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

/* ===== CARD BASE ===== */
.explore-card,
.trip-card {
  width: 280px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 24px var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover,
.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.explore-card img,
.trip-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.2s ease;
}

.explore-card:hover img,
.trip-card:hover img {
  transform: scale(1.05);
}

.explore-card h3,
.trip-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.explore-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.explore-card a,
.trip-card a {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.explore-card a:hover,
.trip-card a:hover {
  color: var(--primary-dark);
}

/* Footer shell */
.site-footer {
  background: #1b1b1f; /* keep a dark neutral footer */
  color: #b9bbc6;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 16px 24px;
  display: grid;
  gap: 10px;
}

/* Links row */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.footer-links a {
  color: #cfd1da;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 8px;
  border-radius: 8px;
}
.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-links a:focus-visible {
  outline: 2px solid rgba(46, 139, 87, 0.6); /* primary-ish focus */
  outline-offset: 2px;
}

/* “Manage cookies” as a subtle button-link */
.cookie-link {
  background: transparent;
  color: #cfd1da;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.92rem;
}
.cookie-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.cookie-link:focus-visible {
  outline: 2px solid rgba(46, 139, 87, 0.6);
  outline-offset: 2px;
}

/* Meta row */
.footer-meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-meta .dot { opacity: 0.6; }

/* Light theme fallback (optional) */
@media (prefers-color-scheme: light) {
  .site-footer {
    background: #f7f7f2;
    color: var(--text-dark);
    border-top: 1px solid var(--border);
  }
  .footer-links a {
    color: var(--text-dark);
  }
  .cookie-link {
    border-color: #d7d7e0;
    color: var(--text-dark);
  }
  .cookie-link:hover {
    border-color: #bfc1cd;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .explore-card,
  .trip-card {
    width: 90%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

/* General Sections */
.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

/* Explore Section Cards */
.explore-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.explore-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 6px 20px var(--shadow);
  padding: 2rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.explore-card svg {
  color: var(--primary);
  margin-bottom: 1rem;
}

.explore-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.explore-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.explore-card a {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.explore-card a:hover {
  text-decoration: underline;
}

/* Unique Trips Section */
.trips-container {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 1rem;
}

.trip-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}

.trip-card:hover {
  transform: translateY(-5px);
}

.trip-card svg {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.trip-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.trip-card a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
}

.trip-card a:hover {
  text-decoration: underline;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .section {
    padding: 3rem 1rem;
  }

  .explore-card,
  .trip-card {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* ========== Homepage shared section layout ========== */

.home-page {
  background: #f9f9f2;
  color: #2f2f2f;
  font-family: sans-serif;
}

.home-section {
  padding: 3rem 1.5rem;
}

.home-section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.home-section-title {
  font-size: 1.7rem;
  text-align: center;
  margin: 0 0 0.75rem;
}

.home-section-lead {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 0.98rem;
  color: #7a7a7a;
}

.home-preview-note {
  max-width: 640px;
  margin: 0px auto 12px auto;
  padding: 20px 12px 6px 12px;
  text-align: center;
  font-size: 0.98rem;
  color: #7a7a7a;
}

.home-preview-note.subtle {
  margin-top: -0.75rem;        /* pulls it closer to the note above */
  font-size: 0.88rem;         /* smaller = secondary importance */
  color: #9a9a9a;             /* lighter gray */
  padding: 5px 12px 12px 12px;
  opacity: 0.85;              /* softer presence */
  letter-spacing: 0.01em;     /* slightly refined feel */
}

.home-bullets li {
  font-size: 0.95rem;
  margin-bottom: 2px;
  line-height: 1.45;
}

.home-preview-copy .btn-primary {
  align-self: center;      /* horizontal centering */
  margin-top: auto;        /* pushes button down */
  margin-bottom: auto;     /* pulls it back up → vertical centering */
}

/* Buttons used on homepage */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  padding: 0.7rem 1.6rem;
  background: #2e8b57;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #1e6140;
}

.btn-secondary {
  padding: 0.6rem 1.4rem;
  background: #ffffff;
  border: 1px solid #e0e0d1;
  color: #2e8b57;
}

.btn-secondary:hover {
  border-color: #2e8b57;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.btn-link {
  padding: 0;
  border: none;
  background: transparent;
  color: #2e8b57;
  font-size: 0.9rem;
}

.btn-link:hover {
  text-decoration: underline;
}

/* ========== HERO (keep your existing hero styles, this is only minimal if needed) ========== */

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem 3rem;
}

.hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

/* ========== HOW IT WORKS ========== */

.home-how {
  background: #fdfdf9;
}

.home-how-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .home-how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-how-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem;
  border: 1px solid #e0e0d1;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  text-align: left;
}

.home-how-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(46, 139, 87, 0.08);
  color: #2e8b57;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.home-how-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.home-how-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #7a7a7a;
}

/* ========== ITINERARY PREVIEW SECTION ========== */

/* Layout for preview section */
.home-preview-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* Left side a bit narrower */
.home-preview-copy {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  max-width: 480px;
}

/* Right side a bit wider */
.home-preview-visual {
  flex: 0 0 60%;
  display: flex;
  justify-content: center;
}

/* Frame that mimics a screen */
.home-preview-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: 22px;
  background: #fdfdf9;
  height: min(85vh, 700px);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 1.5rem 1.75rem 2rem;
  overflow: hidden;
}

/* Slides container */
.home-preview-slides {
  position: relative;
  width: 100%;
  min-height: 280px;
}

/* Individual slide */
.home-preview-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-preview-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* Screenshot image */
.home-preview-slide img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #eceadf;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  display: block;
}

/* Caption */
.home-preview-slide figcaption {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Nav arrows */
.home-preview-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  transition: var(--transition-fast);
}

.home-preview-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.home-preview-nav-prev {
  left: 0.75rem;
}

.home-preview-nav-next {
  right: 0.75rem;
}

/* Dots */
.home-preview-dots {
  position: absolute;
  left: 90%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  justify-content: right;
  /* optional: remove any top margins you had */
  margin-top: 0;
}

.home-preview-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #d9e1d5;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}

.home-preview-dots button.is-active {
  width: 18px;
  background: var(--primary);
}

/* Responsive */
@media (max-width: 960px) {
  .home-preview-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-preview-copy,
  .home-preview-visual {
    flex: none;
    width: 100%;
  }

  .home-preview-frame {
    padding: 1.25rem 1.25rem 2rem;
    height: max(40vh, 400px);
  }

  .home-preview-nav-prev {
    left: 0.4rem;
  }

  .home-preview-nav-next {
    right: 0.4rem;
  }

  .home-preview-dots {
    left: 85%;
  } 
}


/* ========== BENEFITS GRID ========== */

.home-benefits {
  background: #f9f9f2;
}

.home-benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

@media (min-width: 900px) {
  .home-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-benefit {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e0e0d1;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  font-size: 0.9rem;
}

.home-benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.home-benefit p {
  margin: 0;
  color: #7a7a7a;
}

/* ========== TOKENS BLURB ========== */

.home-tokens {
  background: #ffffff;
  border-top: 1px solid #eee8d5;
}

.home-tokens-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .home-tokens-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.home-tokens-copy {
  max-width: 560px;
}

.home-tokens-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 480px) {
  .home-tokens-actions {
    flex-direction: row;
    align-items: center;
  }
}

/* Container for the 2 maps inside the slide */
.home-preview-map-split {
  display: grid;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
  align-items: center;
}

/* Each block (image + tiny label) */
.home-preview-map-block {
  display: flex;
  max-width: 540px; 
  margin: 0 auto; 
  flex-direction: column;
}

/* Make both map images fill their column */
.home-preview-map-block img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover; /* keeps them looking full even if aspect ratios differ */
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

/* Small, subtle label under each mini-map */
.home-preview-map-label {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.4;
  color: #6b7280;
  text-align: center;
}

/* On desktop, put the 2 maps side by side */
@media (min-width: 900px) {
  .home-preview-map-split {
    flex-direction: column;
  }
}
