:root {
  --sunset-orange: #ed6c30;
  --forest-green: #2f5d50;
  --soft-ivory: #f7f3ed;
  --bg-paper: image-set(
    url("../images/background-map.webp") type("image/webp"),
    url("../images/background-map.png") type("image/png")
  );
}

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: #2b2b2b;
  background: var(--bg-paper);
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed;
  position: relative;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

a {
  color: var(--forest-green);
}

a:hover {
  color: var(--sunset-orange);
}

/* NAVBAR */
.navbar {
  margin-top: 12px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  font-size: 14px;
  border-radius: 0;
  position: relative;
  z-index: 5;
}

.navbar-brand {
  gap: 10px;
}

.navbar-brand .brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.navbar-brand .brand-text {
  height: 24px;
  width: auto;
  display: block;
}

.navbar .container {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2f5d50 0%, #4d856c 40%, #f2c27c 40%, #ed6c30 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  padding: 10px 14px;
  color: #2d2d2d;
  font-weight: 500;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: var(--forest-green);
}

.nav-cta {
  background: none;
  border: none;
  color: var(--sunset-orange);
  font-weight: 700;
  text-decoration: underline;
  padding: 8px 10px;
  border-radius: 0;
}

.btn-primary-orange {
  background: var(--sunset-orange);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(237,108,48,0.25);
  border-radius: 6px;
  padding: 0.55rem 1rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-orange:hover,
.btn-primary-orange:focus {
  background: transparent;
  color: var(--sunset-orange);
  border-color: var(--sunset-orange);
  box-shadow: 0 0 0 3px rgba(237,108,48,0.25);
}

.btn-ghost {
  background: transparent;
  border: 2px solid currentColor;
  color: var(--forest-green);
  border-radius: 6px;
  font-weight: 700;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--sunset-orange);
  border-color: var(--sunset-orange);
  box-shadow: 0 0 0 3px rgba(237,108,48,0.25);
  background: rgba(237,108,48,0.05);
}

.btn-with-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-with-arrow .btn-label {
  flex: 1;
  text-align: center;
  font-weight: 600;
}

.btn-with-arrow i {
  margin-left: auto;
}

.room-carousel {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-carousel .carousel-inner,
.room-carousel .carousel-item {
  height: 100%;
}

.room-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.55) 100%), url("../images/hero-river-1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: visible;
  margin-top: -90px;
  padding-top: 140px;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background: var(--bg-paper);
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed;
  mask-image: image-set(
    url("../images/tree-mask-2.webp") type("image/webp"),
    url("../images/tree-mask-2.png") type("image/png")
  );
  mask-size: auto 260px;
  mask-repeat: repeat-x;
  mask-position: center bottom;
  -webkit-mask-image: image-set(
    url("../images/tree-mask-2.webp") type("image/webp"),
    url("../images/tree-mask-2.png") type("image/png")
  );
  -webkit-mask-size: auto 260px;
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-position: center bottom;
  pointer-events: none;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0;
  border-radius: 0;
  max-width: 820px;
  box-shadow: none;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
}

.hero-content p {
  margin: 0;
  color: #f3ecdf;
}

.search-box {
  margin-top: 1.1rem;
}

.search-box input,
.search-box select {
  border: 1px solid #e5ded2;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 15px;
}

.form-chunk {
  display: flex;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5ded2;
  background: rgba(255,255,255,0.9);
}

.form-chunk > * {
  border-radius: 0;
}

.form-chunk > *:not(:last-child) {
  border-right: 1px solid #e5ded2;
}

.form-chunk select,
.form-chunk input {
  flex: 1;
  border: none;
  background: transparent;
}

.form-chunk .btn-primary-orange {
  border-radius: 0;
  border: 1px solid transparent;
  box-shadow: none;
  height: 52px;
  padding: 0 1.5rem;
}

.form-chunk .btn-primary-orange:hover,
.form-chunk .btn-primary-orange:focus {
  color: var(--sunset-orange);
  border-color: var(--sunset-orange);
}

.search-label {
  display: none;
}

/* SECTIONS */
section {
  padding: 3rem 0;
}

.section-bg {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 1.5rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading p {
  margin: 0;
  color: #555;
}

/* CARDS */
.destination-card img,
.package-card img {
  border-radius: 8px 8px 0 0;
  height: 180px;
  object-fit: cover;
}

.destination-card,
.package-card,
.feature-card,
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #f0e6d9;
}

.destination-card {
  padding: 0 0 1.2rem 0;
}

.destination-card .card-body,
.package-card .card-body {
  padding: 1.1rem 1.25rem 1.25rem 1.25rem;
}

.dest-meta {
  color: #777;
  font-size: 13px;
}

.rating-stars {
  color: #f7a928;
  font-size: 13px;
  letter-spacing: 1px;
}

.price {
  color: #000;
  font-weight: 600;
}

/* WHY US */
.icon-circle {
  width: 64px;
  height: 64px;
  background: #eef5f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--forest-green);
  margin: 0 auto 1rem auto;
  box-shadow: inset 0 0 0 1px #d9e7df;
}

.icon-circle i {
  font-size: 26px;
}

.feature-card {
  padding: 1.5rem 1.25rem;
  height: 100%;
  text-align: center;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.2rem;
  color: #555;
}

/* TESTIMONIALS */
.testimonial-card {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f0e6d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #2f5d50;
  border: 2px solid #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* FOOTER */
footer {
  position: relative;
  background: #f2efe9 image-set(
    url("../images/mountain-silhouette.webp") type("image/webp"),
    url("../images/mountain-silhouette.png") type("image/png")
  ) center top / cover no-repeat;
  padding: 120px 0 60px;
}

footer a {
  color: #444;
  text-decoration: none;
}

footer a:hover {
  color: var(--sunset-orange);
}

.footer-columns h6 {
  font-weight: 800;
  margin-bottom: 0.9rem;
  color: #2f5d50;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

.footer-columns a {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #665f53;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 40px;
  background: #fff;
  border: 1px solid #e7dece;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  font-weight: 600;
}

.section-shell {
  position: relative;
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: image-set(
    url("../images/background-map.webp") type("image/webp"),
    url("../images/background-map.png") type("image/png")
  ) repeat;
  opacity: 0.18;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .navbar {
    margin-top: 0;
  }

  .hero {
    margin-top: 0;
    padding-top: 80px;
  }

  .btn-ghost {
    white-space: nowrap;
    font-size: 13px;
    padding: 0.4rem 0.8rem;
  }

  .section-heading {
    gap: 0.75rem;
  }

  footer {
    background-size: contain;
    background-position: center bottom;
    padding: 40px 0 30px;
  }
}
