/* =============================================
   Wanderlust Travel Co. — style.css
   ============================================= */

:root {
  --teal:       #2a6b72;
  --teal-dark:  #1e4f54;
  --teal-light: #3d8a93;
  --gold:       #c9973a;
  --gold-light: #e4b660;
  --dark:       #1a1a2e;
  --charcoal:   #2d2d2d;
  --off-white:  #f8f5f0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: #fff;
}

/* ---- UTILITY ---- */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.fw-600 { font-weight: 600; }
.opacity-90 { opacity: .9; }

/* ---- NAVBAR ---- */
.wl-nav {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .3s;
  padding: .75rem 0;
}
.wl-nav.scrolled { background: rgba(26,26,46,0.99); }
.wl-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff !important;
  letter-spacing: .5px;
}
.wl-nav .nav-link {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75) !important;
  transition: color .2s;
}
.wl-nav .nav-link:hover,
.wl-nav .nav-link.active { color: var(--gold-light) !important; }

/* ---- BUTTONS ---- */
.wl-btn-primary {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .75px;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, transform .15s;
}
.wl-btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-1px);
}
.wl-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .75px;
  text-transform: uppercase;
  transition: background .2s, border-color .2s;
}
.wl-btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
.wl-btn-outline {
  background: transparent;
  color: var(--gold-light) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 4px !important;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s;
}
.wl-btn-outline:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

/* ---- HERO (HOMEPAGE) ---- */
.wl-hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.wl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,30,.55) 0%, rgba(10,20,30,.7) 100%);
}
.wl-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}
.wl-hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  opacity: .9;
  max-width: 550px;
}
.wl-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---- PAGE HERO (inner pages) ---- */
.wl-page-hero {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 80px; /* navbar offset */
}

/* ---- EYEBROW (dark bg version) ---- */
.wl-eyebrow-dark {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
}

/* ---- SECTION TITLE ---- */
.wl-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}

/* ---- INTRO STRIP ---- */
.wl-strip { border-bottom: 1px solid #eee; }
.wl-strip-item { padding: 1rem; }
.wl-strip-mid {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.wl-icon-lg {
  font-size: 2rem;
  color: var(--teal);
  display: block;
}

/* ---- DESTINATION CARDS (homepage) ---- */
.wl-dest-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.wl-dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}
.wl-dest-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.wl-dest-body { padding: 1.5rem; }
.wl-dest-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42,107,114,.1);
  padding: .25rem .6rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: .75rem;
}
.wl-dest-body h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.wl-link {
  color: var(--teal);
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  letter-spacing: .3px;
  transition: color .2s;
}
.wl-link:hover { color: var(--gold); }

/* ---- CHECK LIST ---- */
.wl-check-list {
  list-style: none;
  padding: 0;
}
.wl-check-list li {
  padding: .4rem 0;
  font-size: .95rem;
}
.wl-check-list .bi-check-circle-fill { color: var(--teal); }

/* ---- ROUNDED IMAGE ---- */
.wl-img-rounded { border-radius: 12px; }

/* ---- CTA SECTION ---- */
.wl-cta {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

/* ---- FOOTER ---- */
.wl-footer {
  background: var(--dark);
}
.wl-footer-links li {
  margin-bottom: .4rem;
  font-size: .875rem;
  color: #9ba3b0;
}
.wl-footer-links a {
  color: #9ba3b0;
  text-decoration: none;
  transition: color .2s;
}
.wl-footer-links a:hover { color: var(--gold-light); }
.wl-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  color: #9ba3b0;
  text-decoration: none;
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.wl-social-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* =============================================
   TRAVEL IDEAS PAGE
   ============================================= */
.wl-idea-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wl-idea-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}
.wl-idea-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.wl-dest-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  padding: .3rem .7rem;
  border-radius: 20px;
}
.wl-idea-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wl-idea-body h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: .6rem;
}
.wl-idea-body p { flex: 1; }
.wl-idea-body .wl-link { margin-top: .75rem; display: inline-block; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.wl-stats-strip {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
}
.wl-stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.wl-value-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  height: 100%;
  transition: transform .25s;
}
.wl-value-card:hover { transform: translateY(-4px); }
.wl-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(42,107,114,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin: 0 auto;
}
.wl-team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.wl-team-card h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.x-small { font-size: .8rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.wl-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.wl-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(42,107,114,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: .1rem;
}
.wl-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,.09);
}
.wl-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
}
.wl-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .3px;
}
.wl-input {
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: .65rem .9rem;
  font-size: .9rem;
  font-family: var(--font-sans);
  transition: border-color .2s, box-shadow .2s;
}
.wl-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,107,114,.15);
  outline: none;
}
.wl-alert-success {
  background: rgba(42,107,114,.1);
  border: 1.5px solid var(--teal);
  color: var(--teal-dark);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wl-hero .container { animation: fadeInUp .9s ease both; }
.wl-hero-title { animation-delay: .1s; }

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 767px) {
  .wl-strip-mid { border: none; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
  .wl-hero { background-attachment: scroll; }
  .wl-cta   { background-attachment: scroll; }
}
