/* =========================
   HOME HERO SECTION
========================= */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/*preloader section*/

#opener {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  
  transition: transform 2.8s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 5.2s ease;

}



/* inner content */
.opener-inner {
  width: 100%;
  height: 100%;
}

.opener-inner img,
.opener-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* when opener is closing */
#opener.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

body.opener-active {
  overflow: hidden;
  height: 100vh;
}

.opener-desktop {
  display: block;
}

.opener-mobile {
  display: none;
}

/* MOBILE IMAGE SWITCH */
@media (max-width: 768px) {
  .opener-desktop {
    display: none;
  }

  .opener-mobile {
    display: block;
  }
}


@media (max-width: 1024px) {

  #opener {
    transition: transform 2.2s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 1.1s ease;
  }

  .opener-inner img,
  .opener-inner video {
    object-position: center; /* safe crop */
  }
}

/* ========================================================= */
/* ================= MOBILE FIX ============================ */
/* ========================================================= */

@media (max-width: 768px) {

  #opener {
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 8s ease;
  }

  .opener-inner {
    width: 100%;
    height: 100vh; /* mobile safe */
  }

  .opener-inner img,
  .opener-inner video {
    object-fit: cover;
    object-position: center top; /* faces upar cut na ho */
  }
}

.home-hero {
  min-height: 100vh;
  background: #7a8351;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Georgia", serif;
  padding: 80px 20px;
}

.home-hero-inner {
  max-width: 820px;
  margin: auto;
  color: #ffffff;
}

/* Desktop Illustration */
.hero-illustration {
  width: 320px;
  margin: 0 auto 40px;
  display: block;
}

/* Heading */
.home-hero h1 {
  font-size: 42px;
  font-weight: lighter;
  margin-bottom: 25px;
  line-height: 1.3;
  font-style: italic;
}

/* Paragraph */
.home-hero p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #6b3c2a;
  padding: 12px 26px;
  border-radius: 25px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.05);
}

img[data-hover] {
  transition: opacity 0.4s ease;
}


.rooms-section {
  padding: 140px 90px;
  background: #ffffff;
  font-family: "Georgia", serif;
  text-align: center;
  background-image: url("../images/mob-home-1.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

.rooms-title {
  font-weight: lighter;
  font-size: 32px;
  margin-bottom: 60px;
  color: #2d2d2d;
}

/* GRID */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */

.room-img {
  padding: 6px; /* gap between brown & white */
  border: 1px solid #ffffff; /* ✅ INNER WHITE BORDER */
  border-radius: 5px;
}

.room-card {
  background: #737b4c;
  border-radius: 5px;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  transform: translateY(60px);
  opacity: 0;
  transition: 0.6s ease;
}

.room-card.show {
  transform: translateY(0);
  opacity: 1;
}

.room-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
  transition: 0.4s;
  display: block;
}

.room-info {
  padding: 18px 12px;
  flex-grow: 1;        /* 🔥 MAIN FIX */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: lighter;
}

/* FEATURES ROW */
.room-features {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

/* SINGLE FEATURE */
.feature {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
}

/* ICON */
.feature img {
  width: 18px;
  height: 18px;
  margin-bottom: 6px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* TEXT */
.feature span {
  display: block;
  opacity: 0.9;
}

/* MOBILE */
.rooms-swiper {
  display: none;
}

/* staggered animation delay */
.room-card {
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.room-card.show:nth-child(1) { transition-delay: 0.1s; }
.room-card.show:nth-child(2) { transition-delay: 0.5s; }
.room-card.show:nth-child(3) { transition-delay: 0.7s; }
.room-card.show:nth-child(4) { transition-delay: 0.9s; }


/* ================= CTA SECTION ================= */

.cta-section {
  background: #ffffff;
  padding: 120px 20px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.cta-container h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  color: #2e2e2e;
  margin-bottom: 22px;
}

/* Description */
.cta-container p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  color: #ffffff;
  background: #6f7f6c;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.cta-btn:hover {
  background: #5f6f5c;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .cta-section {
    padding: 90px 24px;
  }

  .cta-container h2 {
    font-size: 36px;
  }

  .cta-container p {
    font-size: 14px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 769px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-container {
    text-align: left;
  }

  .cta-container h2 {
    font-size: 30px;
  }

  .cta-container p {
    font-size: 15px;
    margin: 0 0 28px;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

/* 3rd  section*/

.map-section {
  background: #ffffff;
  padding: 0;
}

/* FULL WIDTH MAP – FULL IMAGE VISIBLE */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 1530px;

  background-image: url("../images/pin-bg.png");
  background-repeat: no-repeat;

  /* IMPORTANT FIX */
  background-size: contain; /* image crop nahi hogi */
  background-position: center top; /* hills upar align */
}

/* ================= PINS ================= */

.pin {
  position: absolute;
  text-align: center;
  cursor: pointer;

  /* IMPORTANT */
  display: flex;
  flex-direction: column-reverse; /* icon upar, line niche */
  align-items: center;

  transform: translateY(-100%);
}

/* dotted line */
.pin-line {
  width: 1px;
  height: 28px;

  background: repeating-linear-gradient(
    to bottom,
    #000000,
    #000000 4px,
    transparent 4px,
    transparent 8px
  );
}

/* icon circle */
.pin-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;
  margin-bottom: 0px;

  background: #f5f5f5;
  color: #fff;
  font-size: 13px;
  border-radius: 50%;

  transition: transform 0.3s ease;
}

/* ACTIVE PIN */
.pin.active .pin-icon {
  transform: scale(1.15);
}

/* ================= PIN POSITIONS (MOVED UP) ================= */
/* Reference ke hisaab se upar kiya */

.pin-1 {
  top: 8%;
  left: 40%;
}
.pin-2 {
  top: 7%;
  left: 58%;
}
.pin-3 {
  top: 26%;
  left: 10%;
}
.pin-4 {
  top: 21.6%;
  left: 30%;
}
.pin-5 {
  top: 34.2%;
  left: 46%;
}
.pin-6 {
  top: 24%;
  left: 73%;
}

.pin-im{
  width: 20px;
  height: 20px;
}

/* ================= INFO BOX ================= */

.info-box {
  position: absolute;
  right: 90px;
  bottom: 850px;
  width: 500px;
  height: 200px;
  padding: 30px;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  background-color: rgba(72, 71, 71, 0.6);
  backdrop-filter: blur(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
/* HEADER ROW */
.info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* TITLE */
.info-box h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}

/* SHOW ON MAP LINK */
.map-link {
  font-size: 13px;
  color: #ffffff;
  text-decoration: underline;
  opacity: 0.9;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.map-link:hover {
  opacity: 1;
}

/* DESCRIPTION */
.info-desc {
  margin: 14px 0 18px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* HINT TEXT */
.info-hint {
  font-size: 12px;
  color: #e6d8b8;
  opacity: 0.9;
}

/* ANIMATION */
.info-box.hide {
  opacity: 0;
  transform: translateX(24px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .map-wrapper {
    height: 620px;
  }

  .info-box {
    right: 40px;
    bottom: 90px;
    width: 320px;
  }
}

@media (max-width: 769px) {
  /* MAP */
  .map-wrapper {
    height: 610px;
  }

  /* SLIDER CONTAINER */
  .info-slider {
    position: absolute;
    bottom: -29px;
    left: 75px;
    width: 100%;

    display: flex;
    gap: 16px;
    padding: 0 16px;
  }

  /* HIDE SCROLLBAR */
  .info-slider::-webkit-scrollbar {
    display: none;
  }

  /* INFO CARD */
  .info-box {
    position: relative;
    flex: 0 0 80%;

    scroll-snap-align: start;

    margin: 0;
    width: auto;

    padding: 22px 20px;
    border-radius: 14px;

    background: rgba(90, 95, 75, 0.92);

    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    background-color: rgba(72, 71, 71, 0.6);
    backdrop-filter: blur(10px);

  }

  /* HEADER */
  .info-header h3 {
    font-size: 20px;
  }

  .map-link {
    font-size: 12px;
  }

  /* DESCRIPTION */
  .info-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 12px 0 14px;
  }

  /* HINT */
  .info-hint {
    font-size: 11px;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP: completely kill swiper */
@media (min-width: 769px) {
  .rooms-swiper {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
  }
}

/* =========================
   TABLET (UNCHANGED FEEL)
========================= */
@media (max-width: 1024px) {
  .home-hero h1 {
    font-size: 34px;
  }

  .hero-illustration {
    width: 260px;
  }
}

/* =========================
   MOBILE — FINAL FIX
========================= */
@media (max-width: 769px) {
  .home-hero {
    min-height: auto;
    background: url("../images/mob-home-1.png") no-repeat bottom center, #ffffff;
    background-size: contain;
    padding: 40px 20px 80px; /* 🔥 TOP SPACE FIX */
    margin-bottom: 80px;
  }

  /* Hide desktop sketch */
  .hero-illustration {
    display: none;
  }

  .home-hero-inner {
    color: #a05035;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .home-hero h1 {
    margin-top: 60px;
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #a05035;
  }

  .home-hero p {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 200px;
    /* 👆 This pushes button AFTER background image */
    color: #5a3a2e;
  }

  

  .hero-btn {
  display: inline-block;
  background: #a05035;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 25px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
  }

  

  .pin-5 {
    top: 24.2%;
    left: 46%;
  }

  .pin-3 {
    top: 5%;
    left: 10%;
  }

  .pin-4 {
    top: 21.6%;
    left: 22%;
  }

  .pin-6 {
    top: 15%;
    left: 73%;
  }

}




@media (max-width: 380px) {

  .pin-5 {
    top: 24.2%;
    left: 46%;
  }

  .pin-3 {
    top: 5%;
    left: 10%;
  }

  .pin-4 {
    top: 21.6%;
    left: 22%;
  }

  .pin-6 {
    top: 15%;
    left: 73%;
  } 
}



@media (max-width: 768px) {
  /* Hide desktop grid */
  .rooms-grid {
    display: none !important;
  }

  /* Section background (brown) */
  .rooms-section {
    background: #a55332 !important;
    padding: 60px 20px 70px;
  }

  /* Title */
  .rooms-title {
    color: #ffffff;
    font-weight: normal;
    text-align: left;
    font-size: 30px;
    margin-bottom: 25px;
  }

  /* Show swiper */
  .rooms-swiper {
    display: block;
    padding-left: 20px;
  }

  /* Swiper slide size */
  .rooms-swiper .swiper-slide {
    width: 260px !important;
  }

  /* Card */
  .rooms-swiper .room-card {
    background: #fff4ea;
    border-radius: 1px;
    padding: 4px 4px;
    color: #2d2d2d;
    text-decoration: none;
    display: block;
    opacity: 1 !important;
    transform: none !important;
  }

  .room-info ul {
    margin-bottom: 15px !important;
  }

  /* Image */
  .rooms-swiper .room-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 1px;
    margin-bottom: 12px;
  }

  /* Title inside card */
  .rooms-swiper .room-info h3 {
    font-size: 18px;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 12px;
    color: #2d2d2d;
  }

  .room-info {
    padding: 0 10px;
  }

  .room-info h3 {
    text-align: left;
  }

  /* Feature list */
  .rooms-swiper .room-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #444;
  }

  .rooms-swiper .room-info ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
  }

  .rooms-swiper .room-info ul li {
    position: relative;
    padding-left: 22px; /* icon ke liye jagah */
    line-height: 1.4;
  }

  /* Common icon style */
  .rooms-swiper .room-info ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* 1st line icon */
  .rooms-swiper .room-info ul li:nth-child(1)::before {
    background-image: url("../images/r1.png");
  }

  /* 2nd line icon */
  .rooms-swiper .room-info ul li:nth-child(2)::before {
    background-image: url("../images/r2.png");
  }

  /* 3rd line icon */
  .rooms-swiper .room-info ul li:nth-child(3)::before {
    background-image: url("../images/r8.png");
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .rooms-section {
    overflow: hidden;
  }

  .rooms-swiper {
    overflow: hidden;
  }

  .stars{
    font-size: 12px !important;
  }
}


.event-slider-section {
  margin-top: -740px;
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.event-slider-container {
  width: 88%;
  height: 500px;
  background: white;
  display: flex;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

/* ----- LEFT SIDE ------ */
.event-slider-left {
  width: 45%;
  background: #a55332;
  color: white;
  padding: 60px 50px;
  position: relative;
}

.label {
  letter-spacing: 1px;
  font-size: 14px;
  opacity: 0.9;
}

.event-slider-left h2 {
  font-family: "Georgia", serif;
  font-size: 34px;
  margin: 15px 0;
}

.event-slider-left .desc {
  font-size: 26px;
  line-height: 30px;
  margin-top: 110px;
  margin-bottom: 20px;
}

.capacity {
  margin-bottom: 25px;
  font-size: 16px;
}

.enquire-btn-2 {
  display: inline-block;
  background: white;
  color: #5b3c2a;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 20px;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  bottom: 30px;
}

.arrow {
  cursor: pointer;
  font-size: 20px;
  user-select: none;
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.4;
}

.dot.active {
  opacity: 1;
  width: 20px;
  border-radius: 5px;
}

#slideTitle {
  font-size: 35px;
  font-weight: lighter;
}

/* ----- RIGHT SIDE SLIDER ------ */

.event-slider-right {
  width: 55%;
  overflow: hidden;
  position: relative;
}

/* BLUR FADE SLIDE EFFECT */
.slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  filter: blur(12px);
  transform: scale(1.03);

  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;

  z-index: 1;
}

.slide.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);

  z-index: 2;
}

.amenities-section {
    width: 100%;
    background: #ffffff;
    text-align: center;
    padding: 70px 0;
}

.amenities-title {
    font-family: "Georgia", serif;
    font-size: 35px;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: lighter;
}

.amenities-subtitle {
    font-size: 16px;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 20px;
    color: #444;
    line-height: 26px;
    font-family: "Georgia", serif;
}

/* ***** 3-COLUMN GRID ***** */

.amenities-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 40px;
}

.amenity-card {
    width: 28%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ***** HOVER OVERLAY ***** */

.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgb(211, 136, 89), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    transition: 0.4s ease;
}

.amenity-overlay p {
    color: rgb(255, 255, 255);
    font-size: 28px;
    font-family: "Georgia", serif;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
    letter-spacing: 1px;
}

.amenity-card:hover .amenity-overlay {
    opacity: 1;
}

.amenity-card:hover .amenity-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.cta-btn {
  display: inline-block;
  padding: 8px 32px;
  border: 1px solid #000000;
  margin-bottom: 50px;
  font-size: 14px;
  color: #000000;
  background: #ffffff;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.cta-btn:hover {
  background: #bcbcbc;
}



/* LAST SECTION */
/* ================= REVIEWS SECTION ================= */

.reviews-section {
  background: #ffffff;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}

.reviews-title {
  font-family: "Georgia", serif;
  font-size: 36px;
  font-weight: lighter;
  margin-bottom: 60px;
  color: #2d2d2d;
}

.reviews-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding : 0 60px;
  position: relative;
}

/* CARD BASE */
.review-card {
  width: 240px;
  height: 340px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin: 0 -25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  cursor: pointer;
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT OVERLAY */
.review-info {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.95);
  padding: 30px 22px;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-info p {
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.stars {
  color: #a55332;
  font-size: 16px;
  margin-bottom: 6px;
}

.author {
  font-size: 13px;
  color: #666;
}

/* HOVER EFFECT */
.review-card:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 5;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.review-card:hover .review-info {
  opacity: 1;
  transform: translateY(0);
}

/* ================= ROTATIONS ================= */

.rotate-1 { transform: rotate(-8deg); }
.rotate-2 { transform: rotate(-4deg); }
.rotate-3 { transform: rotate(0deg); }
.rotate-4 { transform: rotate(4deg); }
.rotate-5 { transform: rotate(8deg); }

/* ================= TABLET VIEW ================= */
@media (min-width: 769px) and (max-width: 1024px) {

  .reviews-section {
    padding: 100px 0 90px;
  }

  .reviews-title {
    margin-left: 60px;
    font-size: 30px;
    margin-bottom: 50px;
    text-align: left;
  }

  .reviews-cards {
    justify-content: center;
    padding: 0 40px;
  }

  /* CARD SIZE */
  .review-card {
    width: 260px;
    height: 360px;
    margin: 0 -18px; /* overlap kam */
  }

  /* Softer rotations for tablet */
  .rotate-1 { transform: rotate(-5deg); }
  .rotate-2 { transform: rotate(-2.5deg); }
  .rotate-3 { transform: rotate(0deg); }
  .rotate-4 { transform: rotate(2.5deg); }
  .rotate-5 { transform: rotate(5deg); }

  /* Hover same but smoother */
  .review-card:hover {
    transform: rotate(0deg) scale(1.04);
  }

  /* Text spacing thoda airy */
  .review-info {
    padding: 26px 20px;
  }

  .review-info p {
    font-size: 14.5px;
  }

  .stars {
    font-size: 15px;
  }

  .author {
    font-size: 13px;
  }
}


@media (max-width: 769px) {
  .review-card{
    height: 190px;
  }

  .review-info p {
    font-size: 8px;
  }
}




@media (max-width: 769px) {

  .amenities-section {
    padding: 36px 18px;
    background: #ffffff;
  }

  /* HEADING */
  .amenities-title {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    color: #2e2e2e;
    margin-bottom: 20px;
    text-align: left;
  }

  /* SUBTITLE */
  .amenities-subtitle {
    font-size: 14px;
    width: 100%;
    line-height: 1.6;
    margin: 0%;
    color: #4a4a4a;
    margin-bottom: 24px;
    text-align: left;
  }

  .cta-btn{
    display: none;
  }

  /* GRID → STACK */
  .amenities-grid {
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    gap: 18px;
  }

  /* CARD */
  .amenity-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    height: 320px;
  }

  .amenity-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
  }

  /* TEXT OVER IMAGE (BOTTOM LEFT) */
  .amenity-overlay {
    opacity: 1;
    height: auto;
    background: none;
    padding-bottom: 0;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1px 20px;
  }

  .amenity-overlay p {
    opacity: 1;
    transform: none;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  }

  /* MOBILE: disable hover effect */
  .amenity-card:hover .amenity-overlay,
  .amenity-card:hover .amenity-overlay p {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px){

  .amenity-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    height: 200px;
  }

  .amenity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  /* TEXT OVER IMAGE (BOTTOM LEFT) */
  .amenity-overlay {
    opacity: 1;
    height: auto;
    background: none;
    padding-bottom: 0;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1px 20px;
  }
}

@media (max-width: 380px){

  .amenity-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    height: 180px;
  }

  .amenity-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  /* TEXT OVER IMAGE (BOTTOM LEFT) */
  .amenity-overlay {
    opacity: 1;
    height: auto;
    background: none;
    padding-bottom: 0;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1px 20px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {

  /* SECTION */
  .amenities-section {
    padding: 70px 40px;
    background: #ffffff;
    text-align: center;
  }

  /* TITLE */
  .amenities-title {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: #2e2e2e;
    margin-bottom: 14px;
  }

  /* SUBTITLE */
  .amenities-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 640px;
    margin: 0 auto 28px;
  }

  /* CTA BUTTON */
  .cta-btn {
    display: inline-block;
    padding: 11px 26px;
    font-size: 14px;
    border-radius: 26px;
    margin-bottom: 42px;
  }

  /* GRID */
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    align-items: stretch;
  }

  /* CARD */
  .amenity-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
  }

  .amenity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  /* OVERLAY (tablet pe hover allowed) */
  .amenity-overlay {
    padding-bottom: 18px;
  }

  .amenity-overlay p {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

}




@media (max-width: 1024px) and (min-width: 769px) {
  .event-slider-section {
    margin-top: -500px;
    padding: 80px 0;
  }

  .event-slider-container {
    width: 92%;
    height: 460px;
  }

  /* LEFT CONTENT */
  .event-slider-left {
    width: 48%;
    padding: 45px 35px;
  }

  .event-slider-left h2,
  #slideTitle {
    font-size: 30px;
  }

  .event-slider-left .desc {
    font-size: 15px;
    line-height: 1.6;
    
  }

  .capacity {
    font-size: 15px;
  }

  .enquire-btn-2 {
    padding: 9px 20px;
    font-size: 14px;
  }

  /* RIGHT IMAGE */
  .event-slider-right {
    width: 52%;
  }

  .slide {
    object-fit: cover;
  }

  /* CONTROLS */
  .slider-controls {
    gap: 20px;
    bottom: 25px;
  }

  .arrow {
    font-size: 18px;
  }
}

@media (max-width: 769px) {
  /* SECTION RESET */
  .event-slider-section {
    margin-top: 0;
    padding: 0;
  }

  .reviews-section {
    padding: 60px 0 60px;
  }

  .event-slider-container {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    box-shadow: none;
    position: relative;
  }

  /* IMAGE FULL SCREEN */
  .event-slider-right {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TEXT OVER IMAGE (BOTTOM OVERLAY) */
  .event-slider-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;

    width: 100%;
    padding: 26px 22px 32px;

    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0)
    );
  }

  /* LABEL */
  .event-slider-left .label {
    font-size: 15px;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 8px;
  }

  /* TITLE */
  #slideTitle {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  /* DESCRIPTION */
  .event-slider-left .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 60px;
    margin-top: 30px;
  }

  /* ❌ HIDE EXTRA DESKTOP CONTENT */
  .capacity,
  .enquire-btn-2 {
    display: none;
  }

  /* SLIDER CONTROLS */
  .slider-controls {
    position: relative;
    margin-top: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .arrow {
    font-size: 18px;
    opacity: 0.85;
  }

  .dots {
    gap: 6px;
  }

  .dot {
    background: #fff;
    opacity: 0.4;
  }

  .dot.active {
    opacity: 1;
    width: 18px;
    border-radius: 6px;
  }
}

@media (max-width: 480px){
  .reviews-section {
    padding: 60px 0 60px;
  }
}

