/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spectral:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap");

:root {
  --night: #0c1720;
  --night-2: #16283a;
  --paper: #f6efe0;
  --card: #fffdf8;
  --ink: #17222c;
  --muted: #5c6a76;
  --gold: #c68a2e;
  --gold-dark: #9c6a1d;
  --rust: #9c3a26;
  --line: #e3dabf;
  --shadow: 0 18px 40px rgba(12, 23, 32, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

h1, h2, h3 {
  font-family: "Spectral", Georgia, serif;
}

/* Navbar */
.nav-bar {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: 53px;
  background-color: var(--night);
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(198, 138, 46, 0.35);
}

.logo {
  flex: 1;
  font-size: 34px;
  margin-left: 20px;
  font-family: Satisfy;
  color: #f6efe0;
}

ul.menu {
  flex: 2;
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  justify-content: flex-end;
  margin-right: 20px;
}

.menu li {
  flex: none;
  font-size: 16px;
  font-family: "Barlow Condensed";
  text-align: center;
}

.menu li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #d8dfe6;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 17px;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.menu li a:hover,
.menu li a:focus-visible {
  color: var(--gold);
  background-color: rgba(198, 138, 46, 0.1);
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  position: fixed;
  margin-top: 12px;
  right: 20px;
  font-size: 30px;
  color: #f6efe0;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  line-height: 1;
}

.menu-toggle:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  color: #f2ede1;
  padding: 56px 0 90px;
  overflow: hidden;
}

.hero-peaks {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 130px;
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.route-line {
  font-family: "Barlow Condensed";
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  max-width: 16ch;
  line-height: 1.15;
}

.hero-sub {
  margin-top: 14px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.55;
  color: #c9d2da;
}

/* Permit card */
.permit {
  position: relative;
  margin-top: -56px;
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 2;
}

.permit-top {
  position: relative;
}

.img-wrap {
  width: 100%;
  aspect-ratio: 18 / 7;
  background: #ddd6c4;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(12, 23, 32, 0.82);
  border: 2px dashed var(--gold);
  color: #f6efe0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-6deg);
}

.stamp-days {
  font-family: "Spectral";
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.stamp-label {
  font-family: "Barlow Condensed";
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 2px;
}

.permit-body {
  padding: 28px 30px 8px;
}

.pkg-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

.sub {
  font-family: "Barlow Condensed";
  font-size: 16px;
  margin-top: 4px;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

/* Timeline */
.timeline {
  list-style: none;
  margin-top: 22px;
  position: relative;
}

.timeline > li {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 18px;
  position: relative;
  padding-bottom: 26px;
}

.timeline > li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -4px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--line) 0,
    var(--line) 6px,
    transparent 6px,
    transparent 12px
  );
}

.day-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--night);
  color: var(--gold);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Spectral";
  font-weight: 600;
  font-size: 16px;
  z-index: 1;
}

.day-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 6px;
}

.day-content p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.visits {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visits li {
  font-size: 13.5px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
}

.note {
  font-style: italic;
  color: var(--muted);
}

/* Ticket stub meta strip */
.ticket-stub {
  margin-top: 6px;
  border-top: 2px dashed var(--line);
  background: var(--paper);
  padding: 22px 30px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  position: relative;
}

.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  top: -11px;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--card);
}

.ticket-stub::before { left: -11px; }
.ticket-stub::after { right: -11px; }

.stub-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stub-label {
  font-family: "Barlow Condensed";
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.stub-value {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.stub-item.price .stub-value {
  color: var(--rust);
  font-family: "Spectral";
  font-size: 19px;
}

/* Info grid: includes / excludes / carry */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 40px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
}

.info-card.wide {
  grid-column: 1 / -1;
}

.info-card h3 {
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink);
}

.info-card.wide p {
  color: black;
  line-height: 1.6;
  font-size: 16px;
  margin-left: 10px;
  font-family: 'Times New Roman';
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
}

.check-list.include li::before {
  content: "\f00c";
  color: #3f7d4f;
}

.check-list.exclude li::before {
  content: "\f00d";
  color: var(--rust);
}

.info-card h3 .fa-check { color: #3f7d4f; }
.info-card h3 .fa-xmark { color: var(--rust); }
.info-card h3 .fa-backpack { color: var(--gold-dark); }

/* Phone and WhatsApp */
.contact-icons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  gap: 20px;
  z-index: 999;
}

.contact-icons a img {
  width: 40px;
  height: 40px;
  background-color: var(--night);
  border-radius: 20%;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  animation: bounce 1s ease-in-out 2s infinite;
}

.contact-icons a img:hover,
.contact-icons a img:focus-visible {
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .contact-icons a img { animation: none; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Footer */
footer {
  background: var(--night);
  color: #cdd5db;
  text-align: center;
  padding: 22px 10px;
}

footer p {
  margin: 0;
  font-size: 14px;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px) {
  .hero h1 { font-size: 34px; }

  .menu-toggle { display: block; }

  .nav-bar {
    justify-content: space-between;
    padding: 0 20px;
  }

  ul.menu {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background: var(--night);
    margin: 0;
    border-top: 1px solid rgba(198, 138, 46, 0.35);
  }

  ul.menu.active { display: flex; }

  .menu li {
    text-align: left;
    padding: 4px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .menu li a { font-size: 16px; }

  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .logo { font-size: 26px; margin-left: 14px; }

  .hero { padding: 40px 0 70px; }
  .hero h1 { font-size: 27px; }
  .hero-sub { font-size: 15px; }

  .permit { margin-top: -40px; }
  .permit-body { padding: 22px 18px 6px; }
  .ticket-stub { padding: 20px 18px 22px; }

  .img-wrap { aspect-ratio: 16 / 10; }

  .stamp {
    width: 68px;
    height: 68px;
    top: 14px;
    right: 14px;
  }
  .stamp-days { font-size: 20px; }
  .stamp-label { font-size: 9px; }

  .timeline > li {
    grid-template-columns: 32px 1fr;
    column-gap: 14px;
  }
  .day-marker { width: 32px; height: 32px; font-size: 14px; }
  .timeline > li:not(:last-child)::before { left: 15px; top: 34px; }
}