﻿:root {
  --navy: #071a33;
  --blue: #103b68;
  --gold: #c9a24b;
  --cream: #f7f4ed;
  --mist: #dceaf0;
  --ink: #10213a;
  --soft: #5c6878;
  --line: rgba(16, 33, 58, .13);
  --serif: 'Fraunces', serif;
  --sans: 'Manrope', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  background: rgba(7, 26, 51, .94);
  backdrop-filter: blur(16px);
  color: white;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.brand em {
  color: var(--gold);
}

.page-nav nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.page-nav nav a {
  opacity: .75;
}

.page-nav nav a:hover,
.page-nav nav a[aria-current="page"] {
  opacity: 1;
  color: #efd58e;
}

.menu {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 22px;
}

.hero-page {
  min-height: 580px;
  padding: 150px 8vw 88px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(90deg, rgba(5, 20, 39, .94), rgba(5, 20, 39, .36)), var(--hero) center/cover;
}

.hero-page::after {
  content: '';
  position: absolute;
  inset: auto -10% -2px;
  height: 145px;
  background: var(--cream);
  clip-path: polygon(0 58%, 16% 35%, 30% 65%, 49% 21%, 68% 56%, 85% 29%, 100% 68%, 100% 100%, 0 100%);
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: block;
  letter-spacing: .19em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: #efd58e;
  margin-bottom: 16px;
}

.hero-page h1,
.page-section h2,
.card h3 {
  font-family: var(--serif);
  line-height: 1.08;
}

.hero-page h1 {
  font-size: clamp(42px, 6vw, 78px);
  margin: 0 0 18px;
}

.hero-page p {
  max-width: 620px;
  font-size: 18px;
  color: #e6edf5;
}

.btn {
  display: inline-flex;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, #efd58e, #c9a24b);
  color: #071a33;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  margin-top: 15px;
}

.page-section {
  padding: 76px 8vw;
  max-width: 1440px;
  margin: auto;
}

.section-intro {
  max-width: 750px;
  margin-bottom: 42px;
}

.section-intro h2 {
  font-size: clamp(31px, 4vw, 52px);
  margin: 0 0 14px;
}

.section-intro p {
  color: var(--soft);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 16px 45px rgba(15, 34, 57, .07);
}

.card h3 {
  font-size: 25px;
  margin: 0 0 9px;
}

.card p {
  margin: 0;
  color: var(--soft);
}

.number {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .12em;
}

.dark {
  background: linear-gradient(135deg, #061528, #103b68);
  color: white;
  max-width: none;
}

.dark .section-intro {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.dark .section-intro h2 {
  color: white;
}

.dark .section-intro p {
  color: #c7d6e6;
}

.itinerary {
  display: grid;
  gap: 0;
  max-width: 1000px;
  margin: auto;
}

.day {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.day:last-child {
  border: 0;
}

.day b {
  color: #efd58e;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
}

.day h3 {
  font-family: var(--serif);
  font-size: 27px;
  margin: 3px 0 7px;
}

.day p {
  margin: 0;
  color: #c7d6e6;
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 17px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
}

.pill-list li:before {
  content: '✓';
  color: #efd58e;
  font-weight: bold;
  margin-right: 10px;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  min-height: 390px;
  background: white;
}

.photo-band {
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.photo-band .copy {
  padding: 56px 7vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.photo-band h2 {
  font-size: 42px;
  margin: 0 0 15px;
}

/* left-column image container used on several pages (applies only to the left half) */
.photo-band .image {
  min-height: 390px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.route {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.route span {
  background: white;
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.route i {
  color: var(--gold);
  font-style: normal;
}

.faq {
  max-width: 930px;
  margin: auto;
}

.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq summary {
  font-weight: 800;
  cursor: pointer;
}

.faq p {
  color: var(--soft);
  margin: 12px 0 0;
}

.cta {
  text-align: center;
  padding: 85px 8vw;
  background: linear-gradient(135deg, #123c66, #071a33);
  color: white;
}

.cta h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 12px;
}

.cta p {
  color: #c7d6e6;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-item {
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: white;
}

.contact-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
}

.contact-item span {
  color: var(--soft);
}

.footer {
  padding: 34px 8vw;
  background: #04101f;
  color: #c7d6e6;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  color: #efd58e;
}

.timeline {
  border-left: 2px solid var(--gold);
  margin-left: 10px;
  padding-left: 34px;
}

.timeline article {
  padding: 0 0 30px;
}

.timeline h3 {
  font-family: var(--serif);
  font-size: 27px;
  margin: 0 0 6px;
}

.timeline p {
  color: var(--soft);
  margin: 0;
}

.map-panel {
  border-radius: 20px;
  background: linear-gradient(135deg, #e2edf2, #b7d2de);
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.map-panel::after {
  content: 'DEHRADUN  →  KEDARNATH  →  BADRINATH';
  font-size: clamp(20px, 4vw, 48px);
  font-family: var(--serif);
  opacity: .16;
  position: absolute;
  inset: 45% 6% auto;
  transform: rotate(-8deg);
}

@media (max-width: 800px) {
  .page-nav nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #071a33;
    padding: 18px 6vw;
    flex-direction: column;
  }

  .page-nav nav.open {
    display: flex;
  }

  .menu {
    display: block;
  }

  .grid.three,
  .grid.two,
  .photo-band,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .hero-page {
    min-height: 520px;
    padding: 115px 7vw 70px;
  }

  .page-section {
    padding: 58px 7vw;
  }

  .day {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pill-list {
    grid-template-columns: 1fr;
  }

  .photo-band .copy {
    padding: 48px 7vw;
  }

  /* hide the decorative left image on small screens for readability */
  .photo-band .image {
    display: none;
  }

  .footer {
    display: block;
  }

  .footer p {
    margin: 0 0 12px;
  }
}
