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

:root {
  --green:   #3d8b5e;
  --green-l: #e8f5ee;
  --blue:    #2e6da4;
  --blue-l:  #e8f0fa;
  --purple:  #6b4db0;
  --purple-l:#f0ebfa;
  --orange:  #d4660a;
  --orange-l:#fdf0e8;
  --teal:    #1a8fa0;
  --teal-l:  #e6f6f8;
  --rose:    #c0395c;
  --rose-l:  #fcedf2;
  --dark:    #1a1d2b;
  --text:    #2d3142;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --radius:  16px;
  --shadow:  0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fafbfc;
  line-height: 1.65;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === NAV === */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,29,43,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.5rem;
}
.nav-logo { color: #a8d8b0; font-weight: 600; font-size: 1rem; white-space: nowrap; }
.nav-links { list-style: none; display: flex; gap: .25rem; flex-wrap: wrap; }
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .82rem; font-weight: 500;
  padding: .35rem .65rem; border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }

/* === HERO === */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,8,18,.78) 0%, rgba(5,8,18,.65) 40%, rgba(5,8,18,.82) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 2rem 1.5rem;
  max-width: 700px;
  animation: fadeUp .9s ease both;
  text-shadow: 0 2px 12px rgba(0,0,0,.9), 0 1px 4px rgba(0,0,0,.8);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: .9rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: #a8d8b0; margin-bottom: .75rem;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.15; margin-bottom: .75rem;
  text-shadow: 0 3px 24px rgba(0,0,0,1), 0 1px 6px rgba(0,0,0,.9);
}
.hero-sub {
  font-size: 1.05rem; opacity: .88; margin-bottom: 1.5rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem;
}
.badge {
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  border-radius: 100px; padding: .4rem 1rem;
  font-size: .82rem; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.hero-btn {
  display: inline-block;
  background: var(--green); color: #fff;
  border-radius: 100px; padding: .75rem 2.25rem;
  font-weight: 600; font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(61,139,94,.5);
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,139,94,.6); text-decoration: none; }

/* === COUNTDOWN === */
#countdown-bar {
  background: linear-gradient(90deg, var(--green), var(--teal));
  color: #fff; text-align: center; padding: .85rem 1rem;
}
.countdown-label { font-size: 1rem; font-weight: 500; }
.countdown-label strong { font-size: 1.25rem; }

/* === LAYOUT === */
.section { padding: 5rem 1.5rem; }
.section-alt { background: #f3f6f0; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center; margin-bottom: .5rem; color: var(--dark);
}
.section-sub {
  text-align: center; color: var(--muted);
  max-width: 600px; margin: 0 auto 3rem;
  font-size: .97rem;
}

/* === OVERVIEW CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.card {
  background: #fff; border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2rem; margin-bottom: .75rem; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.card p, .card li { font-size: .9rem; color: var(--text); line-height: 1.7; }
.card ul { list-style: none; }
.card ul li::before { content: "✓ "; color: var(--green); font-weight: 700; }

.accent-green  { border-top-color: var(--green);  background: var(--green-l); }
.accent-blue   { border-top-color: var(--blue);   background: var(--blue-l);  }
.accent-purple { border-top-color: var(--purple); background: var(--purple-l);}
.accent-orange { border-top-color: var(--orange); background: var(--orange-l);}
.accent-teal   { border-top-color: var(--teal);   background: var(--teal-l);  }
.accent-rose   { border-top-color: var(--rose);   background: var(--rose-l);  }

/* === INFO BOXES === */
.info-box {
  display: flex; gap: 1rem; align-items: flex-start;
  border-radius: var(--radius); padding: 1rem 1.25rem;
  margin: 1.5rem 0; font-size: .9rem;
}
.info-box.warning { background: #fff8e6; border-left: 4px solid #f59e0b; }
.info-box.info    { background: var(--blue-l); border-left: 4px solid var(--blue); }
.info-box.success { background: var(--green-l); border-left: 4px solid var(--green); }
.info-icon { font-size: 1.3rem; flex-shrink: 0; }

/* === CONTACT ROW === */
.contact-row {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem;
}
.contact-card {
  flex: 1 1 200px; background: #fff;
  border-radius: var(--radius); padding: 1rem 1.25rem;
  box-shadow: var(--shadow); font-size: .88rem;
}
.contact-label { font-weight: 700; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .35rem; }

/* === HOTEL FEATURES === */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.feature {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
  transition: transform .2s;
}
.feature:hover { transform: translateY(-3px); }
.feature-emoji { font-size: 1.8rem; flex-shrink: 0; }
.feature h4 { font-size: .97rem; font-weight: 700; margin-bottom: .3rem; }
.feature p { font-size: .87rem; color: var(--muted); }

/* === ROUTE === */
.route-timeline { position: relative; padding-left: 2rem; margin-bottom: 1.5rem; }
.route-step { display: flex; align-items: flex-start; gap: 1rem; position: relative; }
.route-dot {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  margin-top: .4rem; position: absolute; left: -2.1rem;
}
.route-dot.start    { background: var(--green); box-shadow: 0 0 0 4px var(--green-l); }
.route-dot.highway  { background: var(--blue);  box-shadow: 0 0 0 4px var(--blue-l); }
.route-dot.arrival  { background: var(--orange);box-shadow: 0 0 0 4px var(--orange-l); }
.route-dot.hotel    { background: var(--purple);box-shadow: 0 0 0 4px var(--purple-l); }
.route-connector {
  width: 2px; height: 40px; background: var(--border);
  margin-left: -2rem; margin-bottom: 0; position: relative; left: -.18rem;
}
.route-content { background: #fff; border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow); flex: 1; margin-bottom: .5rem; }
.route-content h4 { font-size: .97rem; font-weight: 700; margin-bottom: .3rem; }
.route-content p { font-size: .88rem; color: var(--muted); }
.route-tag { display: inline-block; background: #fef3c7; color: #92400e; border-radius: 6px; padding: .2rem .6rem; font-size: .78rem; font-weight: 600; margin-top: .4rem; }

/* === ACTIVITIES === */
.activity-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem; margin-bottom: 2.5rem;
}
.activity-card {
  background: #fff; border-radius: var(--radius); padding: 1.25rem .75rem;
  text-align: center; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  cursor: default;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.activity-card span { font-size: 2rem; display: block; margin-bottom: .4rem; }
.activity-card p { font-size: .82rem; font-weight: 500; color: var(--text); }

.sub-heading {
  font-size: 1.2rem; font-weight: 700; margin: 2rem 0 1rem;
  color: var(--dark); border-left: 4px solid var(--green); padding-left: .75rem;
}
.program-cards {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem;
}
.program-card {
  flex: 1 1 200px; border-radius: var(--radius);
  padding: 1.25rem; font-size: .9rem;
  box-shadow: var(--shadow);
}
.program-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.program-card.balance  { background: var(--blue-l);   border-left: 4px solid var(--blue);   }
.program-card.mobility { background: var(--green-l);  border-left: 4px solid var(--green);  }
.program-card.power    { background: var(--orange-l); border-left: 4px solid var(--orange); }
.hint { color: var(--muted); font-size: .88rem; margin-top: .5rem; }

/* === SIGHTS === */
.sights-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.sight-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.sight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sight-emoji { font-size: 2.5rem; margin-bottom: .75rem; }
.sight-card h4 { font-weight: 700; margin-bottom: .4rem; }
.sight-card p { font-size: .88rem; color: var(--muted); margin-bottom: .75rem; }
.sight-dist { font-size: .78rem; font-weight: 600; color: var(--green); background: var(--green-l); border-radius: 6px; padding: .2rem .6rem; }

/* === KIDS === */
.kids-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.kid-block { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.kid-header {
  background: linear-gradient(90deg, var(--green), var(--teal));
  color: #fff; font-weight: 700; font-size: 1.05rem; padding: 1rem 1.25rem;
}
.kid-list { list-style: none; padding: 1.25rem; }
.kid-list li { padding: .4rem 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.kid-list li:last-child { border-bottom: none; }

/* === PACKING === */
.packing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 1.5rem; }
.pack-group { background: #fff; border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.pack-group h4 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; color: var(--dark); border-bottom: 2px solid var(--border); padding-bottom: .5rem; }
.check-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; padding: .35rem 0; cursor: pointer;
  border-radius: 6px; padding-left: .25rem;
  transition: background .15s;
}
.check-item:hover { background: #f9fafb; }
.check-item input[type="checkbox"] { width: 1rem; height: 1rem; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
.check-item.done { text-decoration: line-through; color: var(--muted); }

/* === MAP === */
.map-wrapper {
  margin: 2rem 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.map-label {
  padding: .75rem 1.25rem;
  background: var(--dark); color: #a8d8b0;
  font-weight: 600; font-size: .9rem;
}
.map-wrapper iframe {
  display: block; width: 100%; border: none;
}
.map-open-btn {
  display: block; text-align: center;
  padding: .75rem 1rem;
  background: var(--blue-l); color: var(--blue);
  font-weight: 600; font-size: .88rem;
  transition: background .2s;
}
.map-open-btn:hover { background: #d4e4f7; text-decoration: none; }

/* === FOOTER === */
#footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  text-align: center; padding: 2rem 1rem;
  font-size: .88rem;
}
#footer p { margin: .25rem 0; }
.footer-sub { font-size: .78rem; opacity: .6; }

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-content h1 { font-size: 2.2rem; }
  .route-timeline { padding-left: 1.5rem; }
}
