/* ── Reset & base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: #03132B;
  font-family: 'Montserrat', sans-serif;
}

/* ── Page wrapper ──────────────────────────────────────────────────────────── */
#pv-home {
  margin: 0;
  padding: 0;
  background: #03132B;
}

/* ── Nav ───────────────────────────────────────────────────────────────────── */
.pv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: #03132B;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D9CDBF;
  text-decoration: none;
}

#pvNavDesktop {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D9CDBF;
  text-decoration: none;
}

.lang-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-left: 14px;
  border-left: 0.5px solid rgba(255,255,255,0.2);
}

.lang-btn {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #D9CDBF;
  text-decoration: none;
}

#pvLangEN { opacity: 0.5; }

.lang-sep {
  color: rgba(217,205,191,0.2);
  font-size: 10px;
}

/* ── Hamburger ─────────────────────────────────────────────────────────────── */
#pvHamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #D9CDBF;
}

/* ── Mobile menu ───────────────────────────────────────────────────────────── */
#pvMobileMenu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: #03132B;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav-link {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D9CDBF;
  text-decoration: none;
}

.mobile-lang-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.mobile-lang-btn {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #D9CDBF;
  text-decoration: none;
}

#pvMobLangEN { color: rgba(217,205,191,0.5); }

.mobile-lang-sep { color: rgba(217,205,191,0.3); }

.mobile-close {
  position: absolute;
  top: 22px;
  right: 28px;
  cursor: pointer;
  font-size: 22px;
  color: #D9CDBF;
  line-height: 1;
}

/* ── Hero slider ───────────────────────────────────────────────────────────── */
#pvHero {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 400px;
  overflow: hidden;
}

.pvSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
}

#pvS0 { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 14s ease;
}

#pvS0 .slide-bg {
  background-image: url('/images/Budapest-20240404-184-scaled.jpg');
  transform: scale(1);
  transition: transform 14s cubic-bezier(0.25,0.46,0.45,0.94);
}
#pvS1 .slide-bg { background-image: url('/images/THAI-16082014-013-scaled.jpg'); }
#pvS2 .slide-bg { background-image: url('/images/IMG_1180_200419-scaled.jpg'); }
#pvS3 .slide-bg { background-image: url('/images/47D1795D-2BEA-490D-A276-C9FB7CA8BF0A-scaled.jpg'); }
#pvS4 .slide-bg { background-image: url('/images/SydneyOperaHouse_01-2-scaled.jpg'); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,35,0.85) 0%, rgba(10,18,35,0.15) 55%, transparent 100%);
}

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 28px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.slide-caption-left  { min-width: 0; }

.slide-caption-right {
  text-align: right;
  padding-bottom: 4px;
  flex-shrink: 0;
}

.slide-label {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(217,205,191,0.45);
  display: block;
  margin-bottom: 8px;
}

.slide-title-wrap {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 11vw, 80px);
  font-weight: 300;
  color: #D9CDBF;
  line-height: 1;
  overflow: hidden;
}

.pvTitle {
  display: block;
  transform: translateY(100%);
  transition: transform 0.85s cubic-bezier(0.16,1,0.3,1) 0.25s;
}

#pvS0 .pvTitle { transform: translateY(0); }

.slide-count {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(217,205,191,0.45);
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
}

.slide-cta {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D9CDBF;
  border-bottom: 0.5px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  white-space: nowrap;
  text-decoration: none;
}

/* ── Slider controls ───────────────────────────────────────────────────────── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 0.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #D9CDBF;
  cursor: pointer;
  border-radius: 50%;
}

.slider-arrow--prev { left: 14px; }
.slider-arrow--next { right: 14px; }

.slider-progress-track {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
}

#pvProg {
  height: 100%;
  background: rgba(255,255,255,0.5);
  width: 0%;
  transition: width linear;
}

/* ── Continent strip ───────────────────────────────────────────────────────── */
.pv-strip {
  display: flex;
  background: #03132B;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pv-strip::-webkit-scrollbar { display: none; }

.strip-item {
  flex: 1 0 auto;
  padding: 16px 18px;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  cursor: pointer;
  position: relative;
}

.strip-item:last-child   { border-right: none; }
.strip-item:nth-child(1) { min-width: 90px; }
.strip-item:nth-child(2) { min-width: 80px; }
.strip-item:nth-child(3) { min-width: 100px; }
.strip-item:nth-child(4) { min-width: 80px; }
.strip-item:nth-child(5) { min-width: 90px; }

.strip-number {
  font-size: 8px;
  letter-spacing: 0.1em;
  color: rgba(217,205,191,0.3);
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.continent-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #D9CDBF;
  display: block;
  margin-bottom: 2px;
}

.strip-count {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(217,205,191,0.35);
}

.strip-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: #D9CDBF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

#pvBar0 { transform: scaleX(1); }
