@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,700;0,900;1,300;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

@import url('href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

/* ---------- design tokens ---------- */
:root {
  --background: #080b0f;
  --foreground: #f0ede8;
  --card: #0e1318;
  --card-foreground: #e8e4dd;
  --primary: #c8a96e;
  --primary-foreground: #080b0f;
  --secondary: #141a22;
  --secondary-foreground: #a09a91;
  --muted: #111620;
  --muted-foreground: #6b6660;
  --accent: #e8c98a;
  --accent-foreground: #080b0f;
  --border: rgba(200, 169, 110, 0.15);
  --ring: #c8a96e;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 0px; }

.font-display { font-family: 'Fraunces', serif; }
.fg { color: var(--foreground);    font-family: "DM Serif Display", serif; }
.accent { color: var(--accent); font-style: italic; }

.container { max-width: 90rem; margin: 0 auto; padding: 0 1.5rem;}

/* ---------- keyframes ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.animate-fadeInUp    { animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.animate-fadeInLeft  { animation: fadeInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.animate-scaleIn     { animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.animate-float        { animation: float 5s ease-in-out infinite; }
.animate-marquee       { animation: marquee 30s linear infinite; }

/* reveal-on-scroll: hidden until JS adds the animation class */
.reveal { opacity: 0; }
.reveal.in-view.fadeInUp   { animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.reveal.in-view.fadeInLeft { animation: fadeInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.reveal.in-view.scaleIn    { animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

.shimmer-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 40%, #fff8e8 50%, var(--accent) 60%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.card-hover { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease; }
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 169, 110, 0.2);
}

.connect-btn {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.connect-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.connect-btn:hover { transform: scale(1.04); box-shadow: 0 0 40px rgba(200, 169, 110, 0.4); }
.connect-btn:hover::before { opacity: 1; }
.connect-btn span { position: relative; z-index: 1; }

.pulse-wrap { position: relative; display: inline-block; }
.pulse-dot {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-ring 1.5s ease-out infinite;
}

.parallax-img {
  transform: translateY(var(--parallax-offset, 0px));
  transition: transform 0.1s linear;
}

.section-line { width: 40px; height: 1px; background: var(--primary); display: inline-block; }

/* ---------- typography helpers ---------- */
.eyebrow { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); }
.eyebrow-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.eyebrow-row.center { justify-content: center; }
.eyebrow-center { margin-bottom: 1.5rem; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
}
.nav.scrolled {
  background: rgba(8, 11, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 1.25rem; letter-spacing: 0.02em; color: var(--accent); }
.nav-links { display: flex; gap: 2rem; font-size: 0.875rem; color: var(--secondary-foreground); }
.nav-links a { transition: color 0.3s ease; }
.nav-links a:hover { color: #fcd34d; }
.nav-connect-btn { padding: 0.625rem 1.5rem; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; border-radius: 1rem;}
@media (max-width: 767px) { .nav-links { display: none; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
  /* Swap this for url('assets/images/hero-bg.jpg') once you've saved a local copy — see assets/images/README.txt */
  background-image: url('https://images.unsplash.com/photo-1775928036043-0a7455c10971?w=1600&h=1000&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,11,15,0.5) 0%, rgba(8,11,15,0.2) 40%, rgba(8,11,15,0.8) 100%);
}
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 1.5rem; max-width: 64rem; margin: 0 auto; }
.hero-title { font-size: 4rem; line-height: 1; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2.5rem; line-height: 1.6; color: rgba(240,237,232,0.7); }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.hero-btn { padding: 1rem 2.5rem; font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.outline-btn {
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--foreground);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
  text-align: center;
}
.outline-btn:hover { border-color: var(--primary); }

@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
@media (min-width: 768px) { .hero-title { font-size: 6rem; } .hero-sub { font-size: 1.25rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 8rem; } }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); opacity: 0.7; }
.scroll-line { width: 1px; height: 3rem; background: linear-gradient(to bottom, var(--primary), transparent); }

/* ---------- MARQUEE ---------- */
.marquee-wrap {
  overflow: hidden;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--secondary);
}
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; }
.marquee-track span { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); }

/* ---------- STATS ---------- */
.stats-section { padding: 6rem 2rem; max-width: 72rem; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.stat-item { text-align: center; }
.stat-value { font-size: 3rem; margin-bottom: 0.5rem; color: var(--accent); }
.stat-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary-foreground); }
@media (min-width: 768px) { .stat-value { font-size: 3.75rem; } }

/* ---------- DESTINATIONS ---------- */
.destinations-section { padding: 6rem 2rem; }
.dest-header { margin-bottom: 4rem; }
.section-title { font-size: 3rem; }
@media (min-width: 768px) { .section-title { font-size: 3.75rem; } }
.dest-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dest-grid { grid-template-columns: repeat(5, 1fr); } }


.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  height: 480px;
}
.dest-card-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.dest-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.dest-card:hover .dest-card-img-wrap img { transform: scale(1.08); }
.dest-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,11,15,0.95) 100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.dest-card:hover .dest-card-scrim { opacity: 0.95; }
.dest-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 10;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: rgba(200,169,110,0.2);
  color: var(--accent);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 2px;
}
.dest-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; z-index: 10; }
.dest-name { font-size: 1.25rem; margin-bottom: 0.25rem; color: var(--foreground); }
.dest-desc {
  font-size: 0.75rem; line-height: 1.6; margin-bottom: 1rem;
  color: var(--secondary-foreground);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: all 0.3s ease;
}
.dest-card:hover .dest-desc { max-height: 60px; opacity: 1; }
.dest-meta { display: flex; align-items: center; justify-content: space-between; }
.dest-nights { font-size: 0.75rem; color: var(--secondary-foreground); }
.dest-price { font-size: 1.125rem; color: var(--accent); }
.dest-cta {
  margin-top: 1rem; padding-top: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-top: 1px solid var(--border);
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s ease;
}
.dest-card:hover .dest-cta { opacity: 1; transform: translateY(0); }
.dest-cta span { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); }

/* ---------- PROCESS ---------- */
.process-section { padding: 6rem 2rem; background: var(--secondary); }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-item { position: relative; padding: 2rem; }
.process-item.bordered { border-left: 1px solid var(--border); }
.process-step { font-size: 3.75rem; margin-bottom: 1rem; color: wheat ; line-height: 1; }
.process-title { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--accent); }
.process-desc { font-size: 0.875rem; line-height: 1.6; color: var(--secondary-foreground); }
.process-link {
  margin-top: 1.5rem; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary); transition: color 0.3s ease; background: none; display: inline-block;
}
.process-link:hover { color: var(--accent); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { padding: 6rem 2rem; }
.testi-wrap { max-width: 48rem; margin: 0 auto; text-align: center; }
.testi-box { min-height: 12rem; }
.testi-quote { font-size: 1.5rem; font-style: italic; line-height: 1.6; margin-bottom: 2rem; color: var(--foreground); }
@media (min-width: 768px) { .testi-quote { font-size: 1.875rem; } }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testi-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 500;
  background: var(--primary); color: var(--primary-foreground);
}
.testi-info { text-align: left; }
.testi-name { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.testi-role { font-size: 0.75rem; color: var(--secondary-foreground); }
.testi-dots { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.testi-dot { height: 4px; border-radius: 2px; background: var(--border); width: 8px; transition: all 0.3s ease; }
.testi-dot.active { width: 32px; background: var(--primary); }

/* ---------- CTA ---------- */
.cta-section {
  position: relative; padding: 8rem 2rem; overflow: hidden;
  background: linear-gradient(135deg, #0e1318 0%, #0a0f14 50%, #0e1318 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 50% 50%, rgba(200,169,110,0.05) 0%, transparent 70%);
}
.cta-wrap { max-width: 48rem; margin: 0 auto; position: relative; z-index: 10; }
.cta-title { font-size: 3rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-title { font-size: 4.5rem; } }
.cta-sub { font-size: 1.125rem; margin-bottom: 2.5rem; line-height: 1.6; color: rgba(240,237,232,0.6); }
.cta-btn { padding: 1.25rem 3rem; font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; display: inline-flex; align-items: center; gap: 0.75rem; }

/* ---------- FOOTER ---------- */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1rem;
  justify-content: space-between; align-items: flex-start;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }
.footer-logo { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--accent); }
.footer-tag { font-size: 0.75rem; color: var(--muted-foreground); }
.footer-links { display: flex; gap: 3rem; font-size: 0.75rem; color: var(--secondary-foreground); }
.footer-links a { transition: color 0.3s ease; }
.footer-links a:hover { color: #fcd34d; }
.footer-copy { font-size: 0.75rem; color: white; }

/* ---------- MODAL ---------- */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 50;
  align-items: center; justify-content: center; padding: 1rem;
  background-color: rgba(8,11,15,0.85);
  backdrop-filter: blur(12px);
}
.modal-overlay.open { display: flex; }
.modal {
  position: relative; width: 100%; max-width: 32rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 3rem;
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 0.875rem; opacity: 0.4; background: none; color: var(--foreground);
  transition: opacity 0.3s ease;
}
.modal-close:hover { opacity: 1; }
.modal-title { font-size: 1.875rem; margin-bottom: 2rem; color: var(--foreground); }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.field-label { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--secondary-foreground); }
.field-input {
  width: 100%; background: transparent; padding: 0.75rem 1rem; font-size: 0.875rem;
  outline: none; border: 1px solid var(--border); border-radius: 2px; color: var(--foreground);
  font-family: 'DM Sans', sans-serif; transition: border-color 0.3s ease;
}
.field-input:focus { border-color: #fbbf24; }
.field-textarea { resize: none; }
.modal-submit { margin-top: 0.5rem; padding: 1rem 0; font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; width: 100%; }
.modal-submit:disabled { cursor: not-allowed; opacity: 0.75; }
.modal-submit.is-loading span {
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.modal-submit.is-loading span::after {
  content: '';
  width: 12px; height: 12px;
  border: 2px solid rgba(8,11,15,0.35);
  border-top-color: rgba(8,11,15,0.9);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-sent { text-align: center; padding: 2rem 0; }
.modal-sent-emoji { font-size: 3rem; margin-bottom: 1rem; }
.modal-sent-title { font-size: 1.875rem; margin-bottom: 0.75rem; color: var(--accent); }
.modal-sent-text { color: var(--secondary-foreground); }

.footer-brand{
  display:flex;
  align-items:center;
  gap:5px;
}

.logo-img{
  width:70px;
  height:90px;
  object-fit:contain;
  flex-shrink:0;
}

.footer-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.footer-logo{
  margin:0;
  text-decoration:none;
  color:var(--primary);
  font-size:20px;
  line-height:1;
}

.footer-tag{
  margin-top:4px;
  color:#8c8c8c;
}