* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FDFBF7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  width: 100%;
  border-radius: 0 0 2.5rem 2.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,46,0.6) 0%, rgba(26,26,46,0.3) 50%, rgba(26,26,46,0.7) 100%);
  z-index: 0;
}

/* ===== HUGE TEXT ===== */
.huge-text {
  font-size: min(22vw, 380px);
  font-weight: 800;
  line-height: 0.75;
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* ===== FLUID ISLAND NAV ===== */
.nav-pill {
  background: rgba(253, 251, 247, 0.7);
  border-color: rgba(26, 26, 46, 0.08);
}

.nav-pill.scrolled {
  background: rgba(253, 251, 247, 0.92);
  border-color: rgba(26, 26, 46, 0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.nav-link {
  color: rgba(26, 26, 46, 0.65);
}
.nav-link:hover {
  color: rgba(26, 26, 46, 1);
  background: rgba(26, 26, 46, 0.05);
}
.nav-link.active {
  color: rgba(26, 26, 46, 1);
  background: rgba(26, 26, 46, 0.08);
}

/* ===== VIDEO CARD ===== */
.video-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
}

.play-button {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s;
}
.play-button:hover {
  transform: scale(1.1);
}

/* ===== DOUBLE-BEZEL ===== */
.outer-shell {
  background: rgba(26, 26, 46, 0.04);
  border: 1px solid rgba(26, 26, 46, 0.06);
  padding: 6px;
  border-radius: calc(1.5rem + 6px);
  transition: all 0.5s ease;
}

.inner-core {
  background: #fff;
  border-radius: calc(1.5rem - 2px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8);
  transition: all 0.5s ease;
}

.outer-shell.lg-rounded {
  border-radius: calc(2rem + 6px);
}
.outer-shell.lg-rounded .inner-core {
  border-radius: calc(2rem - 2px);
}

/* ===== BUTTON MAIN ===== */
.btn-main {
  background: #fff;
  color: #1A1A2E;
  border: none;
}
.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1A1A2E;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  border-radius: 9999px;
}
.btn-main:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-main:hover {
  color: #fff;
}
.btn-main .btn-icon {
  background: rgba(26, 26, 46, 0.1);
}
.btn-main:hover .btn-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== PLAY BUTTON ===== */
.play-btn {
  background: rgba(255,255,255,0.95);
  color: #1A1A2E;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.play-btn:hover {
  transform: scale(1.08);
}

/* ===== CARDS ===== */
.destination-card {
  cursor: pointer;
}
.destination-card .outer-shell {
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1), box-shadow 0.5s ease;
}
.destination-card:hover .outer-shell {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(26,26,46,0.15);
}

.package-card .outer-shell {
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1), box-shadow 0.5s ease;
}
.package-card:hover .outer-shell {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(26,26,46,0.12);
}

.testimonial-card .outer-shell {
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1), box-shadow 0.5s ease;
}
.testimonial-card:hover .outer-shell {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(26,26,46,0.1);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
  background: rgba(26, 26, 46, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 26, 46, 0.25);
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .outer-shell {
    border-radius: calc(1.25rem + 4px);
    padding: 4px;
  }
  .inner-core {
    border-radius: calc(1.25rem - 2px);
  }
  .outer-shell.lg-rounded {
    border-radius: calc(1.5rem + 4px);
  }
  .outer-shell.lg-rounded .inner-core {
    border-radius: calc(1.5rem - 2px);
  }
}
