/* ==========================================================================
   HERO BANNER — Full-Width Owl Carousel Slider
   V-Square Holidays | Premium Travel Agency, Ahmedabad
   ========================================================================== */

/* ── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --orange: #B87A2B;
  --orange-light: #B87A2B;
  --orange-dark: #B87A2B;
  --white: #ffffff;
  --navy-dark: #122134;
  --hero-height: 85vh;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   HERO SECTION WRAPPER
   ========================================================================== */
.hero-banner-section {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: unset;
  padding: 0px;
  min-height:1000px;
}


/* Make the Owl Carousel fill the full wrapper */
.hero-banner-section .owl-carousel,
.hero-banner-section .owl-stage-outer,
.hero-banner-section .owl-stage,
.hero-banner-section .owl-item {
  height: 100%;
}

/* ==========================================================================
   INDIVIDUAL SLIDE
   ========================================================================== */
.hero-slide {
  position: relative;
  width: 100%;
  height: var(--hero-height);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;border-radius: 0px;
}

/* ── Dark gradient overlay for text legibility ─────────────────────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
 /* background: linear-gradient(96.49deg, rgba(1, 39, 101, 0.7) 8.55%, rgba(102, 102, 102, 0) 55.98%), url(image.png); */
  z-index: 1;
  border-radius: 0px 0px ;
    overflow: hidden;
}



/* Orange bottom accent bar */
/*.hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange), var(--orange-dark));
  z-index: 3;
}*/

/* ==========================================================================
   SLIDE CONTENT — Centered text block
   ========================================================================== */
/*.hero-slide-content {
  position: absolute;
    width: 52%;
    left: 5%;
    bottom: 30%;
    z-index: 1;
}*/
.hero-slide-content {
  position: relative;
  width: 100%;
  left: 7%;
  bottom: 40%;
  z-index: 1;
}

/* ── Italic tagline / subtitle ─────────────────────────────────────────── */
.hero-tagline {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-20px);
}

/* ── Main heading ──────────────────────────────────────────────────────── */

.hero-subtitle {
  font-family: 'Paprika', cursive;
  font-size: 24px;
  color: #B87A2B;
  margin-bottom: 10px;
  line-height: 50px;
  font-weight: 400;
  display: inline-block;
}
.hero-title {
  
  font-weight: 800;
  font-size: 56px;
  line-height: 66px;
  letter-spacing: 0.006em;
  color: #122134;
  margin-bottom: 20px;

}
.hero-title span{color: #B87A2B;}
/*.hero-highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}*/

/* ── Description paragraph ─────────────────────────────────────────────── */
.hero-desc {
  font-size: 24px;
  line-height:36px;
  color: #122134;
  max-width: 640px;

  opacity: 0;
  transform: translateY(20px);margin-bottom: 22px;
  font-family: "Hanken Grotesk", sans-serif;
}

/* ── CTA Buttons ───────────────────────────────────────────────────────── */
.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(20px);
}

/* ==========================================================================
   ACTIVE SLIDE — CSS Entry Animations
   ========================================================================== */
.owl-item.active .hero-tagline {
  animation: heroFadeDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.owl-item.active .hero-title {
  animation: heroFadeUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}

.owl-item.active .hero-desc {
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.65s forwards;
}

.owl-item.active .hero-btns {
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
}

/* ── Keyframes ─────────────────────────────────────────────────────────── */
@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width:1366px){
	.hero-banner-section {height:100vh;}
	.hero-slide-content {bottom: 30%;}
}
/* ==========================================================================
   OWL CAROUSEL — NAVIGATION ARROWS
   ========================================================================== */
.hero-banner-section .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
  z-index: 10;
  margin: 0;
}

.hero-banner-section .owl-carousel .owl-nav button.owl-prev,
.hero-banner-section .owl-carousel .owl-nav button.owl-next {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  font-size: 1rem !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
}

.hero-banner-section .owl-carousel .owl-nav button.owl-prev:hover,
.hero-banner-section .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(246, 142, 30, 0.5);
}

/* ── Arrow Icons ───────────────────────────────────────────────────────── */
.hero-banner-section .owl-carousel .owl-nav button span {
  display: none;
}

/* ==========================================================================
   OWL CAROUSEL — DOT PAGINATION
   ========================================================================== */
.hero-banner-section .owl-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  margin: 0;
}

.hero-banner-section .owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.40) !important;
  border: 2px solid rgba(255, 255, 255, 0.60);
  transition: all 0.4s ease;
  display: block;
  margin: 0 !important;
}

.hero-banner-section .owl-carousel .owl-dots .owl-dot.active span {
  width: 32px !important;
  border-radius: 20px !important;
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 0 12px rgba(246, 142, 30, 0.6);
}

.hero-banner-section .owl-carousel .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.75) !important;
}

/* ==========================================================================
   SLIDE NUMBER COUNTER (top-right decorative)
   ========================================================================== */
/* Uncomment if needed
.hero-slide-counter {
  position: absolute;
  top: 28px;
  right: 36px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  z-index: 5;
}
*/

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablets */
@media (max-width: 991px) {
  .hero-slide-content {
    max-width: 700px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 50px;
  }

  .hero-desc {
    font-size: 1rem;
    max-width: 560px;
  }

  .hero-banner-section .owl-nav {
    padding: 0 14px;
  }

  .hero-banner-section .owl-carousel .owl-nav button.owl-prev,
  .hero-banner-section .owl-carousel .owl-nav button.owl-next {
    width: 44px;
    height: 44px;
  }
}

/* Large Phones */
@media (max-width: 768px) {
  :root {
    --hero-height: 100svh;
  }

  .hero-slide-content {
    gap: 14px;
    padding: 0 16px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    line-height: 50px;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-btns {
    gap: 12px;
  }

  .hero-banner-section .owl-nav {
    display: none;
    /* swipe on mobile */
  }

  .hero-banner-section .owl-dots {
    bottom: 20px;
  }

  .hero-slide-content {
    bottom: 0px;
  }

  .hero-banner-section {
    height: auto;
	min-height: inherit;
  }

  .hero-slide {
    height: auto;
    padding: 70px 0px;
    border-radius: 0px 0px 20px 20px;
  }
  .hero-overlay{border-radius: 0px 0px 20px 20px;}

}

/* Small Phones */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.3rem, 7.5vw, 1.9rem);
    line-height: 36px;
  }

  .hero-slide-content {
    bottom: 0px;left: 0;
  }


  .hero-btns {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
  }
}