/* Neue Montreal - Regular */
@font-face {
  font-family: "Neue Montreal";
  src: url("/fonts/neue-montreal/NeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Neue Montreal - Regular Italic */
@font-face {
  font-family: "Neue Montreal";
  src: url("/fonts/neue-montreal/NeueMontreal-RegularItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Neue Montreal - Medium */
@font-face {
  font-family: "Neue Montreal";
  src: url("/fonts/neue-montreal/NeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Neue Montreal - Medium Italic */
@font-face {
  font-family: "Neue Montreal";
  src: url("/fonts/neue-montreal/NeueMontreal-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Neue Montreal - Bold */
@font-face {
  font-family: "Neue Montreal";
  src: url("/fonts/neue-montreal/NeueMontreal-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Neue Montreal - Bold Italic */
@font-face {
  font-family: "Neue Montreal";
  src: url("/fonts/neue-montreal/NeueMontreal-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Neue Montreal - Extra Bold / Heavy (Optional) */
@font-face {
  font-family: "Neue Montreal";
  src: url("/fonts/neue-montreal/NeueMontreal-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Neue Montreal - Extra Bold Italic (Optional) */
@font-face {
  font-family: "Neue Montreal";
  src: url("/fonts/neue-montreal/NeueMontreal-ExtraBoldItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

body {
  margin: 0px;
}

/* GLOBAL */
.bg-light {
  background: #f5f5f4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Neue Montreal", sans-serif;
}

p,a,button {
  font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
}
/* HERO */
.hero-section {
  position: relative;
  height: auto;
  overflow: hidden;
  padding: 120px 0px;
  background: url("/images/home-banner-bg.png") no-repeat center center;
  background-size: cover;
}

/* .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.hero-content {
  /* margin-top: 160px; */
  width: 820px;
  max-width: 100%;
  padding: 80px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 40px;
  margin-left: -80px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero-content h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.2;
}

.hero-content p {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 500;
}

.btn-primary {
  background: #f97316;
  color: #fff;
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

/* EXPERIENCE */
.experience-section {
  padding: 120px 0;
}

.experience-section h2 {
  font-family: "Neue Montreal", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 57.6px;
  color: #000;
  margin-top: 0px;
  margin-bottom: 0px;
}

.experience-card {
  position: relative;
  height: 384px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f97316;
  cursor: pointer;
}

/* Arrow icon */
.experience-card::before {
  content: url("/images/circled-arrow-top-right.svg");
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9;
}

.card-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; /* full height of parent */
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* text at bottom */
  transition: background 0.3s;
  pointer-events: none; /* optional: allows clicks through overlay */
  background: transparent;
}

.experience-card:hover .card-overlay2 {
  background: rgba(0, 0, 0, 0.4); /* initial overlay */
}

.experience-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay background */
.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 24px;

  /* Gradient background */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

  /* Only animate background removal */
  transition: background 0.3s;
}

/* On hover, remove overlay background */
.experience-card:hover .card-overlay {
  background: transparent;
}

/* Text inside overlay stays visible */
.card-overlay h3,
.card-overlay p {
  color: #fff;
  margin: 0;
  z-index: 9;
  position: relative;
}

.card-overlay h3 {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

.card-overlay p {
  color: #fff;
  font-size: 16px;
  margin: 4px 0 0 0;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SLIDER CONTROLS */
.slider-controls {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.slider-btn {
  width: 64px;
  height: 64px;
  border-radius: 30px;
}

.slider-btn.outline {
  border: 1px solid #f97316;
  background: transparent;
}

.slider-btn.filled {
  background: #f97316;
}

/* ===== Shared Layout ===== */
.celebrate-section,
.story-section {
  /* position: absolute;
  left: 80px;
  display: inline-flex;
  align-items: center; */
  padding-bottom: 100px;
}

/* ===== Image Card ===== */
.image-card {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section .image-card img {
  top: -15px;
  left: -161px;
  width: 922px;
  height: 615px;
}

/* ===== Content ===== */
.content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  height: fit-content;
}

.story-section .content {
  gap: 32px;
}

/* ===== Typography ===== */
.story-section .content h2,
.celebrate-section .content h2 {
  font-family: "Neue Montreal", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 57.6px;
  color: #000;
  margin-top: 0px;
  margin-bottom: 0px;
}

.story-section .content p,
.celebrate-section .content p {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  color: #6b6b6b;
  margin: 0px;
}

.text-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ===== Button ===== */
.celebrate-section .outline-button {
  width: fit-content;
  padding: 16px 32px;
  border-radius: 9999px;
  border: 2px solid #000;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

/* ===== Icon ===== */
.icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.icon i {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1.25px solid #000;
}

.icon i:first-child {
  left: 5px;
  top: 6.25px;
}

.icon i:last-child {
  left: 6.67px;
  top: 5px;
}

.g-16 {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 16px;
}

.g-24 {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.g-32 {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 32px;
}

.g-48 {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 48px;
}

.food-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.pricing-row {
  --bs-gutter-x: 24px; /* gap-6 */
  --bs-gutter-y: 24px;
}

.feature-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 14px;
}

/* ---------- GLOBAL ---------- */
.section-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 48px;
}

.section-title--light {
  color: #fff;
}

/* ---------- OPERATING HOURS ---------- */
.hours-section {
  background: #f97316;
  padding: 112px 0;
}

.hours-row {
  --bs-gutter-x: 24px;
  align-items: center;
}

.hours-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hours-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
}

.hours-card h4 {
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 14px;
}

.hours-main {
  font-size: 24px;
  font-weight: 500;
  margin: 0px;
}

.hours-alert {
  color: #b91c1c;
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 0px;
}

.hours-success {
  color: #166534;
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 0px;
}

.hours-image {
  height: 454px;
  border-radius: 8px;
  overflow: hidden;
}

.hours-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  position: relative;
  padding: 4rem 6%;
  background-color: #fff;
  font-family: "Inter", sans-serif;
}

.testimonials-section .testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-section .testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.testimonials-section .section-title {
  font-family: "Neue Montreal", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #000;
  margin: 0px;
}

.testimonials-section .testimonial-nav {
  display: flex;
  gap: 1rem;
}

.testimonials-section .nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #f97316;
  background: transparent;
}

.testimonials-section .nav-btn.nav-next {
  background: #f97316;
  border: none;
}

.testimonials-section .nav-btn .arrow-left,
.testimonials-section .nav-btn .arrow-right {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.testimonials-section .nav-btn .arrow-left {
  transform: rotate(-135deg);
}

.testimonials-section .nav-btn .arrow-right {
  transform: rotate(45deg);
}

.testimonials-section .testimonial-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.testimonials-section .testimonial-row::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

.testimonials-section .testimonial-card {
  flex: 0 0 380px; /* width of card */
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonials-section .testimonial-stars span {
  color: #f97316;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.testimonials-section .testimonial-text {
  font-family: "Neue Montreal", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #000;
}

.testimonials-section .testimonial-description {
  color: #52525b;
  font-size: 1rem;
  margin: 0.5rem 0 1rem;
}

.testimonials-section .testimonial-author {
  color: #000;
  font-weight: 500;
}

/* =========================
   Fuel the Fun Section
========================= */

.fuel-fun-section {
  position: relative;
  padding: 7rem 5rem; /* similar to px-20 py-28 */
  background-color: #ffe5d4; /* bg-orange-100 */
}

.fuel-fun-section .section-title {
  text-align: center;
  font-family: "Neue Montreal", sans-serif;
  font-size: 3rem; /* text-5xl */
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin-bottom: 3rem; /* gap-12 */
}

.fuel-fun-section .cards-row {
  display: flex;
  gap: 1.5rem; /* gap-6 */
  flex-wrap: wrap;
  justify-content: center;
}

.fuel-fun-section .card {
  width: 18rem; /* w-72 */
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
}

.fuel-fun-section .card-image {
  position: relative;
  height: 18rem; /* h-72 */
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
}

.fuel-fun-section .card-image img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  left: 0;
}

.fuel-fun-section .card-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* gap-2 */
}

.fuel-fun-section .card-title {
  font-family: "Neue Montreal", sans-serif;
  font-size: 1.5rem; /* text-2xl */
  font-weight: 500;
  color: #000;
  margin: 0px;
}

.fuel-fun-section .card-price {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem; /* text-lg */
  font-weight: 500;
  color: #000;
  margin: 0px;
}

/* Hover effect: optional overlay or transform */
.fuel-fun-section .card:hover .card-image img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* =========================
   Adventure Pass Section
========================= */

.adventure-pass-section {
  position: relative;
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem; /* gap-12 */
}

.adventure-pass-section .section-title {
  text-align: center;
  font-family: "Neue Montreal", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

.adventure-pass-section .passes-row {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 1.5rem;
  justify-content: center;
  flex-direction: row;
}

.adventure-pass-section .pass-card {
  width: 39rem; /* ~ w-[628px] */
  padding: 1.5rem; /* p-6 */
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2rem; /* gap-8/gap-24 in inner sections */
}

.adventure-pass-section .pass-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* gap-6 */
}

.adventure-pass-section .pass-title {
  font-family: "Neue Montreal", sans-serif;
  font-size: 1.5rem; /* text-2xl */
  font-weight: 500;
  color: #000;
  margin: 0px;
}

.adventure-pass-section .pass-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem; /* gap-[5px] */
}

.adventure-pass-section .pass-price .price {
  font-family: "Neue Montreal", sans-serif;
  font-size: 2rem; /* text-3xl */
  font-weight: 500;
}

.adventure-pass-section .pass-price .per-person {
  font-family: "Inter", sans-serif;
  font-size: 1rem; /* text-base */
}

.adventure-pass-section .pass-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.adventure-pass-section .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding-left: 30px;
  position: relative;
}

.adventure-pass-section .feature-item::before {
  content: url("/images/checkmark-circle-01.svg");
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Order Button */
.adventure-pass-section .order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid #000;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.adventure-pass-section .order-btn:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/* =========================
   Responsive
========================= */
@media screen and (max-width: 1024px) {
  .fuel-fun-section .cards-row,
  .adventure-pass-section .passes-row {
    flex-direction: column;
    align-items: center;
  }

  .fuel-fun-section .card,
  .adventure-pass-section .pass-card {
    width: 100%;
    max-width: 40rem;
  }
}

/* ---------- NAV BUTTONS ---------- */
.testimonial-nav {
  display: flex;
  gap: 16px;
}

.nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.nav-btn--outline {
  border: 1px solid #f97316;
  background: transparent;
  color: #f97316;
}

.nav-btn--filled {
  background: #f97316;
  border: none;
  color: #fff;
}

.custom-gutter-80 {
  --bs-gutter-x: 80px;
  --bs-gutter-y: 40px;
}

.site-header {
  padding: 16px 0px;
}
/* HEADER ROW */
.header-row {
  /* column-gap: 128px; */
}

/* LEFT GROUP */
.header-left {
  display: flex;
  align-items: center;
  gap: 144px;
}

/* BRAND */
.header-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* NAV */
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* LINKS */
.header-nav a,
.nav-item span {
  font-size: 18px;
  line-height: 24px;
  font-family: Inter, sans-serif;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.caret {
  width: 10px;
  height: 5px;
  border: 1.25px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
  z-index: 9999;
}

.has-dropdown:hover .dropdown-menu {
  display: flex;
}

/* CTA */
.btn-buy-ticket {
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid #f97316;
  color: #f97316;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* BURGER */
.burger-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.burger-btn span {
  width: 24px;
  height: 2px;
  background: #000;
}

/* MOBILE */
.mobile-only {
  display: none;
}

.footer-section {
  position: relative;
  width: 100%;
  /* min-height: 562px; */
  background-color: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 80px 30px;
}

.footer-columns {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Column 1 - About */
.footer-about .footer-logo {
  width: 56px;
  height: 56px;
  position: relative;
}

.footer-about .logo-shapes span {
  position: absolute;
  display: block;
}

/* Example shapes */
.footer-about .logo-shapes .sky-1 {
  width: 4px;
  height: 3px;
  left: 0;
  top: 36px;
  background: #38bdf8;
}
.footer-about .logo-shapes .sky-2 {
  width: 5px;
  height: 9px;
  left: 7px;
  top: 0;
  background: #38bdf8;
}
.footer-about .logo-shapes .orange-1 {
  width: 4px;
  height: 9px;
  left: 29px;
  top: 0;
  background: #f97316;
}
/* Add the rest of shapes similarly as in Tailwind version */

.footer-about .footer-box {
  width: 80px;
  height: 32px;
  background: #f97316;
}

.footer-about-text h3,
.footer-links h3,
.footer-adventures h3,
.footer-visit h3 {
  font-family: "Neue Montreal", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
}

.footer-about-text p,
.footer-links p,
.footer-adventures p,
.footer-visit p {
  font-weight: 300;
  line-height: 1.5rem;
  margin-bottom: 0px;
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d4d4d8;
}

.footer-column ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5rem;
  font-weight: 300; /* keep the light text like original */
}

.footer-column ul.no-disc {
  list-style: none;
  padding-left: 0px;
}

/* .has-dropdown.active .dropdown-menu {
    display: flex;

    padding-left: 16px;
    z-index: 999;
} */

@media (max-width: 991px) {
  .header-row {
    column-gap: 0;
    width: 100%;
    display: block;
  }

  .header-left {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    display: none;
  }

  .header-nav.active {
    display: flex;
  }

  .has-dropdown:hover .dropdown-menu {
    display: none;
  }

  .has-dropdown.active .dropdown-menu {
    display: flex;
    position: static;
    box-shadow: none;
    padding-left: 16px;
  }

  .mobile-only {
    display: inline-flex;
  }
}
