/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  width: 100%;
  max-height: 95vh;
  overflow: hidden;

}

.hero-section {
  width: 100%;
}

.hero-section img.hero-bg-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 0 50%;
}
@media(max-width:575px){
    .hero-home{
        height:370px;
    }
}

/* ---------- Festival Intro ---------- */
.section-intro {
  padding: 90px 0;
  background-color: var(--color-white);
}

.intro-img-wrap {
  position: relative;
}

.intro-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.intro-btns a {
  display: flex;
  background-color: #F26B351A;
  color: #333;
  gap: 6px;
  font-size: 14px;

}

.intro-btns a svg {
  fill: var(--color-primary);
}

.intro-btns a:hover {
  background-color: #F26B351A;
  color: var(--color-primary);
}

.intro-btns a:hover svg {
  fill: var(--color-primary);
}

/* ---------- Festival Highlights ---------- */
.highlight-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.highlight-card:hover img {
  transform: scale(1.06);
}

/* ---------- Awards Section ---------- */
.section-awards {
  padding: 10px 0 60px 0;

}



/* ---------- Testimonials ---------- */

.testimonial-card {
  background: #F26B350D;
  border-radius: 6px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}


.testimonial-img {
  width: 85px;
  height: 85px;
  margin: 0 auto 20px auto;
}

.testimonial-info {
  line-height: 1.1;
}

.testimonial-name {
  font-family: var(--font-heading);
  color: var(--color-primary)
}

.testimonial-location {
  font-size: 14px;
}

/* ---------- Gallery ---------- */
.section-gallery {
  padding: 90px 0 0 0;
  background-color: var(--color-white);
}

/* ─── Swiper rows ─── */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  align-items: stretch;
}

/* Row 1 — taller */
.row-top .swiper-slide {
  height: 280px;
}

/* Row 2 — shorter */
.row-bottom .swiper-slide {
  height: 210px;
}

.swiper-slide {
  width: auto;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 1rem;
}

.swiper-slide img {
  display: block;
  height: 100%;
  width: auto;
  min-width: 260px;
  max-width: 480px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s ease;
  filter: brightness(0.88) saturate(0.92);
  will-change: transform;
}

.swiper-slide:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.05);
}

/* Gold shimmer on hover */
.swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.16) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.swiper-slide:hover::after {
  opacity: 1;
}

/* Video badge */
.swiper-slide.is-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 6, 0.35);
  z-index: 1;
}

.video-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(200, 169, 110, 0.18);
  transition: transform 0.3s, background 0.3s;
}

.swiper-slide:hover .play-btn {
  transform: scale(1.15);
  background: #fff;
}

.play-btn svg {
  fill: #fff;
}

.swiper-slide:hover .play-btn svg {
  fill: var(--color-primary);
}

/* Edge fade masks */
.swiper-fade-left,
.swiper-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.swiper-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--deep) 0%, transparent 100%);
}

.swiper-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--deep) 0%, transparent 100%);
}

.row-wrap {
  position: relative;
}

/* ---------- Organisers ---------- */
.section-organisers {
  padding: 90px 0 0 0;
}

.organisers-img-desktop {
  display: block;
  border-radius: 6px;
}

.organisers-img-mobile {
  display: none;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .organisers-img-desktop {
    display: none;
  }

  .organisers-img-mobile {
    display: block;
  }
}

/* ---------- Instagram ---------- */
.section-instagram {
  padding: 80px 0;
  background-color: var(--color-white);
}

.insta-handle {
  color: var(--color-primary);
  font-weight: 700;
  transition: var(--transition);
}

.insta-handle:hover {
  color: var(--color-accent);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 2rem;
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(200, 152, 58, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  opacity: 0;
  transition: var(--transition);
}

.insta-item:hover .insta-hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Contact Section ---------- */

/* AOS Animation */
/* Ensure hero image has smooth transition */
.hero-section {
  overflow: hidden;
}

.hero-section img {
  transition: transform 0.8s ease;
}

.hero-section:hover img {
  transform: scale(1.02);
}

/* Highlight cards */
.highlight-card {
  transition: all 0.6s ease;
}

/* Testimonial cards */
.testimonial-card {
  transition: all 0.6s ease;
}

/* ---------- Responsive Globals ---------- */
@media (max-width: 991px) {

  .section-intro,
  .section-awards,
  .section-highlights,
  .section-pricing,
  .section-testimonials,
  .section-gallery,
  .section-organisers,
  .section-instagram {
    padding: 60px 0;
  }

  .spacer {
    height: 60px;
  }
}

@media (max-width: 767px) {

  .section-intro,
  .section-awards,
  .section-highlights,
  .section-pricing,
  .section-testimonials,
  .section-gallery,
  .section-organisers,
  .section-instagram {
    padding: 48px 0;
  }

  .spacer {
    height: 48px;
  }

}