/* ===============================
   CUSTOM FONTS
================================ */

@font-face {
  font-family: 'Armor Piercing';
 src: url('../fonts/ArmorPiercing.woff2') format('woff2'),
       url('../fonts/ArmorPiercing.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-Regular.woff2') format('woff2'),
       url('../fonts/MyriadPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


    :root {
      --primary: #f59e0b;
      --dark: #1f2937;
      --light: #f9fafb;
      --muted: #6b7280;
    }

    /* ===============================
   SCROLL REVEAL ANIMATIONS
================================ */

.headline {
	font-size: 50px;
}
}

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  transform: translateX(-40px);
}

.reveal-left.active {
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  transform: translateX(40px);
}

.reveal-right.active {
  transform: translateX(0);
}

/* Slight delay helpers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }


    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Segoe UI', sans-serif; background: var(--light); color: var(--dark); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }

    /* HEADER */
    header {
      position: absolute;
      top: 0; left: 0; right: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 56px;
      z-index: 10;
    }
    header nav a { margin: 0 15px; color: white; font-weight: 500; }
    .btn { background: var(--primary); color: white; padding: 10px 18px; border-radius: 6px; font-weight: 600; }

    /* ABOUT SECTION */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  max-width: 520px;
}

.about-btn {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
}

/* Image stacking */
.about-images {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.main-img {
  position: relative;
  z-index: 1;
}

.overlay-img {
  position: absolute;
  width: 44%;
  bottom: -44px;
  left: -80px;   /* move to the left */
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .overlay-img {
    position: relative;
    width: 54%;
    bottom: 100px;
    right: 0;
    margin-top: 20px;
    left: -40px;
  }
}


    /* HERO */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;

  /*  Important */
  position: relative;
  isolation: isolate;
}


.hero-bg { 
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.05);
  will-change: transform;
  top: 52px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /*  LOCK IT */
  transform: none !important;
  will-change: auto;
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 20px;
  transition: transform 0.4s ease-out;
}

.hero h1 { font-size: 52px; margin-bottom: 15px; }
.hero p { font-size: 18px; opacity: 0.95; }




    /* SECTION */
    section { padding: 80px 60px; }
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* ===============================
   TOURS GRID (CENTERED & RESPONSIVE)
================================ */
/* ===============================
   TOURS SECTION
================================ */
.tours {
  background: #fff;
  padding: 80px 60px;
}

/* Grid container */
.tour-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
    /* Centers all items, including the leftover ones in the last row */
    justify-content: center; 
}

.tour-grid .tour-link {
    /* Mimics the minmax(250px, max-content) grid behavior */
    flex: 0 1 250px; 
    /* Ensures cards don't shrink below 250px and grow naturally with content */
    min-width: 250px; 
}
/* Tour cards */
.tour-link {
  display: block;
  width: 100%;
  max-width: 280px; /* uniform card width */
  text-decoration: none;
  color: inherit;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card .content {
  padding: 20px;
}

.card h4 {
  margin-bottom: 10px;
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
================================ */
@media (max-width: 1200px) {
  .tour-grid { grid-template-columns: repeat(auto-fit, minmax(220px, auto)); }
}

@media (max-width: 900px) {
  .tour-grid { grid-template-columns: repeat(auto-fit, minmax(180px, auto)); }
}

@media (max-width: 600px) {
  .tour-grid {
    grid-template-columns: 1fr;  /* single column */
    justify-content: center;     /* center card */
  }
  .tour-link { max-width: 100%; }
}



    .tour-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }


    .card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,.08);
      transition: transform .3s;
    }
    .card:hover { transform: translateY(-6px); }
    .card img { width: 100%; height: 200px; object-fit: cover; }
    .card .content { padding: 20px; }
    .card h4 { margin-bottom: 10px; }

    /* CONTACT */
    .contact {
      background: #f3f4f6;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .contact-box {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }
    input, textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border-radius: 6px;
      border: 1px solid #d1d5db;
    }

    footer {
      background: #1f3b63;
      color: white;
      text-align: center;
      padding: 20px;
    }

    @media(max-width: 900px) {
      header { padding: 20px; }
      .hero-content { margin: 20px; }
      .two-col, .contact { grid-template-columns: 1fr; }
    }



    /* SINGLE TOUR PAGE */
.tour-single {
  padding: 80px 60px;
}

.tour-hero img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
}

.tour-container {
  max-width: 900px;
  margin: auto;
}

.tour-container h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.tour-content {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .tour-single {
    padding: 40px 20px;
  }

  .tour-hero img {
    height: 40vh;
  }

  .tour-container h1 {
    font-size: 32px;
  }
}

/* TOUR SINGLE */
.tour-single {
  padding: 80px 60px;
}

.tour-container {
  max-width: 900px;
  margin: auto;
}

.tour-meta span {
  margin-right: 20px;
  font-weight: 600;
}

.tour-highlights {
  margin: 20px 0;
  padding-left: 20px;
}

.tour-slider {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    position: relative;
}

.tour-slider img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #f59e0b;
}

.swiper-pagination-bullet {
    background: #f59e0b;
}


.whatsapp-btn {
  background: #25D366;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
  color: #6b7280;
}

/* ===============================
   ABOUT VIDEO
================================ */
.about-video {
  padding: 5rem 1.5rem;
  text-align: center;
}

.video-wrap {
  max-width: 100%;
  margin: auto;
}

/* ===============================
   FULL BLEED VIDEO (NO BLACK BARS)
================================ */

.video-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  height: 70vh; /* adjust height as needed */
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.about-video-player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* 🔥 removes black bars */
}


/* Play Button */
.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-container.playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}



/* Headings & Brand */
h1, h2, h3, h4, h5, h6,
header strong,
nav a {
  font-family: 'Armor Piercing', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Body & paragraphs */
body,
p,
input,
textarea,
button {
  font-family: 'Myriad Pro', 'Segoe UI', sans-serif;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-inner {
  width: min(92vw, 1000px);
  position: relative;
  color: #fff;
}

.video-wrapper {
  position: relative;
}

.video-wrapper video {
  width: 100%;
  max-height: 75vh;
  background: #000;
  object-fit: cover;
}

.video-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.modal-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease;
}

.video-wrapper.playing .modal-play-btn {
  opacity: 0;
  pointer-events: none;
}

.modal-controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.modal-controls button {
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
}

.modal-details-btn {
  display: inline-block;
  margin-top: 15px;
}


/* ===============================
   REDUCED MOTION SUPPORT
================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    scroll-behavior: auto !important;
  }
}
