/* ==========================================================================
   BACKPACKING BHUTAN - LANDING PAGE STYLE SHEET (backpacking-style.css)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Mingzat&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

/* BRAND FONTS & ROOT TOKENS */
@font-face {
  font-family: "Migate";
  src: url("fnt/migate_0gRZdteIX6.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Migate";
  src: url("fnt/migate_bold_oxSiX9VNCC.otf") format("opentype");
  font-weight: 700;
}

:root {
  --bg-primary: #0C151A;
  --bg-secondary: #141E26;
  --accent-gold: #C35F12;
  --accent-copper: #724C39;
  --text-main: #C35F12;
  --text-muted: rgba(245, 248, 250, 0.65);
  --border-muted: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(242, 164, 92, 0.35);
  --grid-gap: 24px;
}

/* RESET & CORE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: "Mingzat", serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 1.2s ease;
}

body.loaded {
  opacity: 1;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: "Migate", serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  color: var(--text-main);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-main);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--accent-gold);
}

p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

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

/* BRAND HEADER / LOGO */
.brand-header {
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.brand-logo {
  width: 140px;
  height: auto;
  transition: transform 0.4s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

/* HERO SECTION */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-subtitle {
  font-family: "Migate", serif;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--accent-gold);
  margin-top: 1rem;
  text-transform: uppercase;
}

/* 4-COLUMN PARALLAX GALLERY */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
  height: 60vh;
  min-height: 480px;
}

.gallery-column {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: none;
}

.gallery-image {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  transition: filter 0.5s ease, transform 0.1s ease-out;
  will-change: transform;
}

.gallery-column:hover .gallery-image {
  filter: grayscale(0%) contrast(105%) brightness(95%);
}

/* HORIZONTAL NAVIGATION BAR & SUB-METRICS */
.sub-metrics-band {
  max-width: 1200px;
  margin: 2rem auto 5rem;
  padding: 0 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  padding: 3rem 0;
}

.metric-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.metric-title {
  font-family: "Migate", serif;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.metric-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: var(--accent-copper);
}

.metric-desc {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 280px;
}

/* SECTION TITLES & SUBTITLES */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 6rem auto 3rem;
  padding: 0 2rem;
}

.section-tagline {
  font-family: "Migate", serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--accent-copper);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* 4-COLUMN PRIORITIES GRID */
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.priority-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.priority-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.priority-card h3 {
  font-size: 1.4rem;
  border-bottom: 1px solid var(--border-muted);
  padding-bottom: 1rem;
}

.priority-card p {
  font-size: 13.5px;
  line-height: 1.6;
}

.priority-card .card-footer-link {
  font-size: 11px;
  font-family: "Migate", serif;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.priority-card:hover .card-footer-link {
  gap: 10px;
}

/* ORNAMENT ELEMENT */
.ornament-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem 0;
}

.ornament-svg {
  width: 48px;
  height: 48px;
  fill: var(--accent-copper);
  opacity: 0.6;
}

/* DISCOVERY / FORM SECTION */
.discovery-section {
  max-width: 720px;
  margin: 0 auto 6rem;
  text-align: center;
  padding: 0 2rem;
}

.discovery-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.qr-placeholder-wrapper {
  display: inline-block;
  background: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  padding: 24px;
  margin: 1.5rem 0;
  transition: border-color 0.4s ease;
}

.qr-placeholder-wrapper:hover {
  border-color: var(--accent-gold);
}

.qr-placeholder-svg {
  width: 140px;
  height: 140px;
  stroke: var(--text-main);
  fill: none;
}

/* SPECIAL OFFER / CREDIT SECTION */
.special-offer-band {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  padding: 6rem 2rem;
  margin: 6rem 0;
}

.offer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.credit-box {
  border: 1px solid var(--border-accent);
  padding: 4rem 3rem;
  margin-top: 3rem;
  position: relative;
  background: rgba(10, 15, 18, 0.4);
}

.credit-title-lg {
  font-family: "Migate", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.credit-subtitle-lg {
  font-family: "Migate", serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 4px;
  color: var(--text-main);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.credit-details {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-size: 14px;
  line-height: 1.8;
}

/* PREMIUM ACTION BUTTONS */
.btn-primary-bu {
  display: inline-block;
  background: #C35F12;
  color: #000;
  font-family: "Migate", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary-bu:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary-bu:active {
  transform: translateY(0);
}

/* MEET THE CONCIERGE TEAM */
.concierge-profile {
  max-width: 720px;
  margin: 6rem auto;
  padding: 0 2rem;
  text-align: center;
}

.avatar-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-role {
  font-family: "Migate", serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.profile-text {
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* FOOTER DIRECTORY */
.footer-directory {
  border-top: 1px solid var(--border-muted);
  padding: 4rem 2rem;
  background: #06090b;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-info-item i {
  font-size: 1.3rem;
  color: var(--accent-gold);
}

.footer-info-item span {
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-copyright {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3rem;
  letter-spacing: 1px;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet & Smaller Screen adjustments */
@media (max-width: 1024px) {
  .priorities-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 2rem 0;
  }

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

/* Mobile Screens */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    height: 90vh;
  }

  .gallery-column:nth-child(n+3) {
    display: none;
    /* Only show first 2 on mobile layout for better fit */
  }

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

  .gallery-container.second-gallery .gallery-column:nth-child(n+3) {
    display: none;
  }

  .brand-header {
    padding: 2rem 1rem 1rem;
  }

  .hero-section {
    padding: 0 1rem;
  }

  .offer-container {
    padding: 0 1rem;
  }

  .credit-box {
    padding: 2.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ==========================================
   EXPERIENCE HIGHLIGHTS GRID
========================================== */

.experience-highlights {
  max-width: 1200px;
  margin: -1rem auto 5rem;
  padding: 0 2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.highlight-item {
  background: rgba(20, 30, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 92px;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  transition: all 0.35s ease;
}

.highlight-item:hover {
  border-color: rgba(195, 95, 18, 0.35);
  background: rgba(20, 30, 38, 1);
}

.highlight-dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);

  width: 10px;
  height: 10px;
  background: rgba(195, 95, 18, 0.35);
}

.highlight-item h3 {
  font-family: "Mingzat", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: none;
  text-align: center;
  margin: 0;
}

.gallery-track {
  display: contents;
}

/* Mobile */
@media (max-width: 768px) {

  .gallery-container,
  .gallery-container.second-gallery {
    display: flex;
    gap: 12px;
    overflow: hidden;
    height: 55vh;
    min-height: 420px;
    padding: 0 1rem;
    position: relative;
  }

  .gallery-track {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    animation: mobileGalleryScroll 15s linear infinite;
  }

  .gallery-column {
    flex: 0 0 75vw;
    height: 100%;
  }

  .gallery-image {
    position: relative;
    top: 0;
    height: 100%;
  }

  @keyframes mobileGalleryScroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }
}