 :root {
  --primary-color: #1D285C;
  --secondary-color: #5DC5E3;
  --tertiory-color: rgb(8, 8, 10);
  --white-color: rgb(255, 255, 255);
  --paragraph-color: #404650;
  --subheading-color: #0B162C;
  --base-line-height: 1.4;
}

/* ====================== GLOBAL RESET ====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

img {
  /* max-width: 100%; */
  height: auto;
}

.common-container {
  max-width: 1320px;
  margin: auto;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  width: 100%;
  overflow-x: hidden !important;
}

P {
  font-size: 14px;
}

/* ====================== UNIVERSAL STYLES  ====================== */
h2 {
  font-size: 22px;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary-color);
}

.tag {
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
}


/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: .3s;
}

.site-header.is-scrolled {
  background: #0B162C;
}

/* ================= TOP INFO ================= */
.top-info {
  display: flex;
  justify-content: space-between;
  padding: 10px 60px;
  font-size: 13px;
  color: var(--white-color);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.top-info i {
  margin-right: 6px;
}

.header-contact {
  display: flex;
  gap: 30px;
}
#weather {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: capitalize;
}
/* ================= NAVBAR ================= */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 60px;
}

/* ================= LEFT MENU ================= */
.nav-left {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

.nav-left li {
  display: flex;
  align-items: center;
}

.nav-left a {
  display: inline-flex;
  align-items: center;
  color: var(--white-color);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

/* ================= DROPDOWN ================= */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown i {
  font-size: 10px;
  position: relative;
  top: 1px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: var(--white-color);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.nav-dropdown-menu li {
  border-bottom: 1px solid var(--white-color);
}

.nav-dropdown-menu a {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  color: var(--tertiory-color);
  font-size: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= LOGO ================= */
.nav-logo img {
  height: 65px;
}

/* ================= RIGHT ================= */
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.book-btn {
  padding: 10px 24px;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  font-size: 14px;
}

.menu-btn {
  font-size: 26px;
  cursor: pointer;
  color: var(--white-color);
  display: none;
}

/* NAVBAR GRID */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 6px 70px;
}

/* LEFT & RIGHT */
.nav-left,
.nav-right {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
}

.nav-right {
  justify-content: flex-end;
  color: var(--white-color);
}

.nav-logo {
  display: flex;
  justify-content: center;
}

/* ================= OVERLAY MENU ================= */
.overlay-menu {
  position: fixed;
  inset: 0;
  display: flex;
  transform: translateX(100%);
  transition: .5s;
  z-index: 9999;
}

.overlay-menu.active {
  transform: translateX(0);
  height: 100vh;
}

.overlay-left {
  width: 40%;
  background: #fff;
  padding: 80px 60px;
  font-size: 15px;
  line-height: 1.8;
}

.overlay-left p {
  margin-bottom: 14px;
}

.overlay-right {
  width: 60%;
  background: url("./images/aboutbanner.jpg") center/cover no-repeat;
  padding: 80px;
  color: #fff;
  position: relative;
  height: 100vh;
}

.overlay-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.overlay-right * {
  position: relative;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 28px;
  cursor: pointer;
}

/* ================= OVERLAY LINKS ================= */
.overlay-links {
  list-style: none;
  margin-top: 40px;
}

.overlay-links li {
  margin-bottom: 18px;
}

.overlay-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--white-color);
  text-decoration: none;
}

.overlay-links i {
  font-size: 16px;
  opacity: .8;
}

.overlay-book {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  color: var(--white-color);
  border: 1px solid white;
  font-size: 14px;
  letter-spacing: 1px;

  &:hover {
    color: var(--white-color);
  }
}

/* ====================== LUXURY SLIDER ====================== */
.luxury-slider {
  position: relative;
  height: 90vh;
  /* overflow: hidden; */
  padding-bottom: 160px;
}

.slider-track {
  height: 100%;
}

.slider-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slider-item.is-active {
  opacity: 1;
  z-index: 2;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.slider-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  position: relative;
  color: var(--white-color);
  max-width: 800px;
  max-height: 100vh;
  padding: 0 20px;
  z-index: 3;
  margin-top: 10px;
}

.slider-content h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  text-align: center;
}

.slider-content p {
  max-width: 500px;
  text-align: center;
}

/* ====================== SLIDER CONTROLS====================== */
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-controls button {
  background-color: transparent;
  border: 1px solid white;
  color: var(--white-color);
  padding: 10px 15px;
  cursor: pointer;
}

.slider-controls>.slider-btn:hover {
  background-color: var(--secondary-color);
}

/* ======================RECTANGLE BUTTON====================== */
.rect-btn {
  text-transform: uppercase;
  position: relative;
  padding: 10px 1px;
  font-size: 1rem;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
   .view-all-btn {
            text-align: center;
            margin-top: 50px;
        }
.rect-btn::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  transform: translate(-50%, -50%) scale(0);
  transition: width 0.4s ease, height 0.4s ease, transform 0.4s ease;
  z-index: -1;
}

.rect-btn:hover::before {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
}

 .feedback-next,
.feedback-prev {
  color: var(--secondary-color);
  &:hover{
      color: var(--white-color);
  }
}
/* ======================HERO SECTIONS ====================== */
.hero-container {
  width: 100%;
  min-height: 100svh;
  height: 100vh;
  height: 800px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("./Images/hero-bg2.jpg") center/cover no-repeat;
  color: var(--white-color);
  text-align: center;
  text-transform: capitalize;
  position: relative;
}

.hero-container .crausal-btns {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 10px;
  right: 20px;
}

.hero-container button {
  border: 1px solid white;
  background: transparent;
  color: var(--white-color);
  padding: 8px 10px;
  cursor: pointer;
  text-transform: uppercase;
}

.hero-container p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.hero-container h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  max-width: 500px;
  width: 100%;
  font-weight: 500;
  line-height: 1.2;
}

/* Hero Button */
.hero-btn {
  width: fit-content;
  position: relative;
  padding: 14px 32px;
  font-size: 1rem;
  border: none;
  background: var(--secondary-color);
  color: var(--white-color);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

.hero-btn::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 20px;
  height: 20px;
  background: var(--tertiory-color);
  transform: translate(-50%, -50%) scale(0);
  transition: width 0.4s ease, height 0.4s ease, transform 0.4s ease;
  z-index: -1;
}

.hero-btn:hover::before {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
}

.hero-btn:hover {
  color: var(--white-color);
}

/* Common Hero Variations */
.common-hero.events {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("./Images/events.webp");
  background-position: top center;
}

/* .common-hero.weddinghero { */
  /* height: 80vh; */
  /* background: linear-gradient(to top,
      rgba(208, 205, 205, 0.95) 0%,
      rgba(105, 103, 103, 0.6) 15%,
      rgba(255, 255, 255, 0) 35%),
    linear-gradient(rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)),
    url("./Images/Vivah.svg") ; */
    /* background-image:url(./images/3.svg);
  background-position: top center; */
/* } */
/* new hero */

  /* HERO */
  .hero {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* WAVE FIX */
  .wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
  }

  .wave-container svg {
    display: block;
    width: 100%;
    height: 180px;
    margin-bottom: -2px;
    transform: translateY(1px);
  }

  /* LOGO SECTION */
  .logo-wrapper {
    position: relative;
    width: 100%;
    background: #fff;
    padding-top: 60px;
    padding-bottom: 50px;
    text-align: center;
  }

  .logo-floating {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -55px;
    text-align: center;
  }

  /* UPDATED CLASS: vivah */
  .vivah img {
    width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .by {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #c40000;
    margin-top: 5px;
  }

  .resort {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #c40000;
    margin-top: 5px;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .vivah img {
      width: 190px;
    }
  }

  @media (max-width: 768px) {
    .hero {
      height: 60vh;
    }

    .vivah img {
      width: 140px;
      height: 60px;
    }

    .wave-container svg {
      height: 140px;
    }
  }

  @media (max-width: 480px) {
    .vivah img {
      width: 90px;
      height: 55px;
    }

    .resort {
      font-size: 13px;
    }

    .by {
      font-size: 12px;
    }

    .wave-container svg {
      height: 110px;
    }
  }


/* end new hero */
/* .weddinghero h1, .broucheHeading {
  
  /* font-size: 4rem !important; */
  /* font-size: clamp(4rem, 3vw, 2rem) !important; */

/* } */ 

.weddinghero h2 {
  color: var(--white-color);
  padding-bottom: 10px;
}

.weddinghero h3 {
  color: var(--white-color);
  text-align: center;
  font-size: clamp(16px, 4vw, 1rem) !important;
  letter-spacing: 3px;

}

.common-hero.eventshero {
  height: 100vh;
  background: linear-gradient(to top,
      rgba(208, 205, 205, 0.95) 0%,
      rgba(105, 103, 103, 0.6) 15%,
      rgba(255, 255, 255, 0) 35%),
    linear-gradient(rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)),
    url("./Images/WhatsApp-Image-2026-02-19-at-11.34.58-AM-2.jpeg") center / cover no-repeat;
  align-items: center;
  padding-top: 60px;
}

.common-hero.roomshero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)),
    url("./images/executivesuite2.jpg");
}

.common-hero.blog {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("./images/PANO_0001-Pano-2-1-scaled.jpg") center/cover no-repeat;
  background-position: center 90%;
  align-items: center;
  padding-top: 60px;
  /* max-width: 2560px; */
}

.common-hero {
  width: 100%;
  min-height: 550px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#roomHero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url('./images/executivesuite2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.common-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
  font-weight: 600;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  text-align: center !important;

}

.common-hero .hero-links {
  color: var(--white-color);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.hero-links a:first-child {
  color: var(--secondary-color);
}

.contact-hero {
  background-image: url(./images/DSC00197-Edit-scaled.jpg);
}

.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("./images/aboutbanner\ -\ Copy.jpg") center/cover no-repeat;
  margin-bottom: 70px;
}

.corporatehero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
    url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-color);
  padding: 20px;
}

.corporatehero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
}

/* ====================== ROOMS SECTION ====================== */
.romm-detail {
  padding: 40px 0px;
}

.roomscontainer {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 10px;
  margin-bottom: 40px;
}

.room-section {
  background-color: #F9F9F9;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 40px;
  transition: all 0.3s ease;
}

.room-content {
  flex: 1 1 500px;
  padding: 30px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.startrating {
  color: var(--primary-color);
}

.room-heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}

.room-features {
  list-style: none;
  margin-bottom: 25px;
}

.room-features li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.room-features li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.5rem;
  line-height: 1;
}

.room-description {
  color: var(--paragraph-color);
  margin-bottom: 30px;
  line-height: var(--base-line-height);
}

.ownername {
  font-size: 13px;
  color: var(--secondary-color);
}

.message {
  font-style: italic;
}

.message-info {
  margin: 20px;
}

.image-overlay-text img {
  max-width: 100%;
}

.discover-button {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid black;
  color: var(--territary-color);
  padding: 12px 26px;
  font-size: 14px;
  width: fit-content;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.discover-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.discover-button:hover i {
  transform: translateX(5px);
}

.discover-button:hover {
  color: var(--white-color);
}

.eventbtn {
  margin-top: 20px
}

.image-overlay-text {
  width: 100%;
  height: 100%;
}

.image-overlay-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-image {
  flex: 1 1 500px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gm-image .image-overlay-text img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* ====================== TITLE SECTION====================== */
.title-section {
  position: relative;
  min-height: 200px;
  text-align: center;
  overflow: hidden;
  padding: 20px 0px 60px 0px;
}

.bg-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url("/images/dhr_logo_icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 600px auto;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  max-width: 1200px;
  max-height: 400px;
}

.title-wrapper,
h2,
p {
  position: relative;
  z-index: 1;
}

.title-wrapper .utilitesp {
  color: var(--subheading-color);
}

.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding-top: 20px;
}

.line {
  width: 100px;
  height: 1px;
  background-color: var(--primary-color);
  margin: 0 15px;
}

.logo-circle img {
  height: 50px;
  width: auto;
  transform: scale(2);
}

h2 {
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.utilitesp {
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--base-line-height);
  padding: 0px 20px;
  color: var(--subheading-color);
}

/* ===================== ROOM CARDS GRID ====================== */
.roomCardGrid {
  max-width: 1320px;
  margin: auto;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0px 20px;
  padding-bottom: 30px;
}

.roomCard {
  background: var(--white-color);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.roomCardImage {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.roomCardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.roomCard:hover .roomCardImage img {
  transform: scale(1.15);
}

.roomPriceTag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--white-color);
  color: var(--subheading-color);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
}

.roomViewBtn {
  position: absolute;
  bottom: 18px;
  left: 0;
  background: #0B162C;
  color: var(--white-color);
  padding: 12px 22px;
  font-size: 14px;
  text-decoration: none;
  transform: translateX(-100%);
  transition: 0.5s ease;
}

.roomViewBtn i {
  font-size: 10px;
  margin-left: 5px;
}

.roomCard:hover .roomViewBtn {
  transform: translateX(18px);
}

.roomCardBody {
  padding: 26px;
  flex-grow: 1;
}

.roomTitle {
  /* margin: 20px 0; */
  margin-bottom: 10px;
}

.roomSize {
  color: var(--paragraph-color);
  font-size: 15px;
}

.roomCardFooter {
  border-top: 1px solid #eee;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.roomBedInfo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paragraph-color);
  font-size: 14px;
}

.roomFooterDivider {
  width: 1px;
  height: 22px;
  background: #ddd;
}

/* ====================== ROOM DETAILS ====================== */
.room-buttons {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 4vw, 20px);
  margin-bottom: 40px;
}

.room-button {
  padding: 12px 26px;
  color: var(--subheading-color);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid black;
}

.room-button:hover {
  color: var(--white-color);
}

.room-btn {
  cursor: pointer;
  padding: 12px 18px;
}

.room-btn.selectedroom {
  background: var(--tertiory-color);
  color: var(--white-color);
}


/*  */

.selectedroomslider {
  position: relative;
  width: 100%;
  height: 400px;
  /* IMPORTANT */
  overflow: hidden;
  border-radius: 10px;
}

/* Room Slider */
.rooms-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.rooms-track {
  position: relative;
}

.room-slide {
  display: none;
  animation: fadeSlide 0.8s ease-in-out;
}

.room-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.slider-dots span {
  width: 30px;
  height: 3px;
  background: #9f0000;

  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots span.active {
  background: var(--primary-color);
}

/* Selected Room Slider */
.selectedroomslider {
  position: relative;
  width: 100%;
  margin-top: 30px;
  border-radius: 10px;
  background-color: #000;
}

.selectedroomslider .slides {
  display: flex;
  /* height: 100%; */
  transition: transform 0.6s ease;
}

.selectedroomslider .slide {
  min-width: 100%;
  height: 100%;
}

.selectedroomslider img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.selectedroomslider .slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.selectedroomslider .slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary-color);
}

.selectedroomslider .slider-dots span.active {
  background: var(--white-color);
}

/* ====================== ROOM AMENITIES====================== */
.roomaminities {
  padding: 80px 20px;
  background: var(--white-color);
}

.roomaminities-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.roomaminities-content {
  flex: 1;
}

.roomaminities-subtitle {
  color: var(--secondary-color);
}

.roomaminities-title {
  line-height: var(--base-line-height);
  margin: 20px 0 40px;
  color: var(--primary-color);
}

.roomaminities-list {
  padding: 0;
  margin: 0;
}

.roomaminities-list li {
  padding: 14px 0;
  color: var(--paragraph-color);
  border-bottom: 1px solid var(--paragraph-color);
}

.roomaminities-list li:last-child {
  border-bottom: none;
}

.roomaminities-image {
  flex: 1;
  height: 400;
}

.roomaminities-image img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* ======================  REUSABLE SPLIT WRAPPER  ====================== */
.split-wrapper {
  max-width: 1320px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  padding: 0px 10px;
}

.split-wrapper .splitbtn {
  margin-top: 22px;
}

.two {
  padding: 0px 20px;
  max-width: 1320px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}


.split-image {
  flex: 1 1 400px;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  flex: 1 1 400px;
}

.split-content .tag {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.split-content .title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}

.split-content .description {
  line-height: var(--base-line-height);
  color: var(--paragraph-color);
  margin-bottom: 15px;
}

.stats {
  margin-top: 50px;
  margin-bottom: 30px;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.highlighted-baground {
  padding: 20px;
  margin-bottom: 25px;
}

/* ================= AMENITIES SECTION ================= */
.amenities-section {
  padding: 10px;
  text-align: center;
}

/* ================= TITLE ================= */
.amenities-title {
  font-size: clamp(26px, 4.5vw, 38px);
  margin-bottom: clamp(35px, 5vw, 65px);
  color: #1f1f1f;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

.amenities-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #b08d57, #e3c48c);
  display: block;
  margin: 16px auto 0;
  border-radius: 10px;
}

/* ================= GRID ================= */
.amenities-grid {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 34px);
}

/* ================= CARD ================= */
.amenity-box {
  padding: clamp(30px, 4vw, 45px) clamp(22px, 3vw, 32px);
  border-radius: 20px;
  box-shadow: 0 18px 5px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


.amenity-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 15px rgba(0, 0, 0, 0.15);
}

/* ================= ICON ================= */
.amenity-box i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.amenity-box:hover i {
  transform: scale(1.15) rotate(-3deg);
}

/* ================= TEXT ================= */
.amenity-box h3 {
  font-size: clamp(18px, 2.6vw, 22px);
  margin-bottom: 12px;
  color: var(--subheading-color);
  font-weight: 600;
}

.amenity-box p {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--paragraph-color);
  line-height: var(--base-line-height);
}

/* ======================  FACILITY CARDS ====================== */
.facility-card {
  display: flex;
  max-width: 1320px;
  align-items: flex-start;
  gap: clamp(0px, 8vw, 160px);
  margin: 0px auto;
  flex-wrap: wrap;
  padding: 40px 20px;
  border-top: 1px solid rgb(216, 205, 205);
  align-self: center;
  justify-content: center;
}

.rowreverse {
  flex-direction: row-reverse;
}

.facilitytitle {
  max-width: 1320px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
  padding: 50px 20px;
}

.facilitytitle h2 {
  font-size: 33px;
  padding-top: 10px;
}

.facilitytitle button {
  border: 1px solid black;
  color: var(--tertiory-color);
}

.facility-card .facility-image {
  flex: 1 1 400px;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.facility-card .facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facility-card .facility-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.facility-card .facility-number {
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--secondary-color);
  position: absolute;
  left: 50%;
}

.facility-card .facility-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
  position: relative;
}

.facility-btn {
  background-color: var(--secondary-color);
  margin-top: 20px;
  padding: 10px 20px;
}

.facility-card .facility-desc {
  text-transform: capitalize;
  color: var(--paragraph-color);
  line-height: var(--base-line-height);
}

.facility-card .facility-link {
  font-size: 2.4rem;
  color: var(--secondary-color);
  text-decoration: none;
  margin-top: 50px;
}

/* ====================== SPECIAL OFFERS ====================== */
.specialOffers {
  background-color: rgb(248, 243, 243);
  height: 100vh;
  padding: 90px 90px;
}

.specialOffers h2 {
  font-size: 2.4rem;
  width: 35%;
  padding: 10px 0px;
  padding-bottom: 60px;
  font-weight: 500;
}

.specialOffers .offerscards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-width: 1300px;
  gap: 20px;
  height: 338px;
}

.specialOffers .cardone {
  background-image: url(./Images/offers-2.jpg);
}

.offer-badge {
  background: transparent;
  margin: 10px;
  border: 1px solid white;
  padding: 8px 24px;
  color: var(--white-color);
  font-size: 18px;
  cursor: pointer;
}

.offer-badge:hover {
  background-color: var(--secondary-color);
}

/* ====================== BLOG SECTION ====================== */
.blog-section {
  padding: 0px 20px;
  padding-bottom: 70px;
}

.blog-grid {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

}

.blog-grid-3 {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white-color);
  border: 1px solid gray;
  display: flex;
  flex-direction: column;
}

.blog-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding: 15px;
}
.blog-content h4{
  font-family: "Cormorant Garamond", serif;
  padding-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
}
.meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.blog-excerpt{
  text-align: left;
  word-spacing: 5px;
}
.blog-content h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: var(--base-line-height);
  color: var(--primary-color);
}

.blog-footer {
  margin-top: auto;
  padding: 20px 24px;
  border-top: 1px solid gray;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-footer a {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bolder;
}

.blog-footer span {
  color: var(--secondary-color);
  font-size: 20px;
  transition: transform .3s ease;
  font-weight: 600;
}

.blog-footer:hover span {
  cursor: pointer;
}

.blog-footer.active a,
.blog-footer.active span {
  color: var(--secondary-color);
}

/* ====================== AVAILABILITY SECTION ====================== */
.availability {
  position: relative;
  margin-top: -100px;
  bottom: 40px;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.availability-box {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 20px 30px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  align-items:end;
  width: 100%;
  max-width: 500px;
}

.field label {
  display: block;
  font-size: 14px;
  color: var(--white-color);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.field input {
  width: 100%;
  font-size: 16px;
  outline: none;
  font-weight: 500;
  color: var(--text-color);
  background: var(--white-color);
  padding: 8px 10px;
  border: 1px solid black;
  transition: border-color 0.3s ease;
}

.field input:focus {
  border-color: var(--secondary-color);
}

.field input[type="date"] {
  cursor: pointer;
}

/* Button */
.cta-btn {
  color: var(--white-color);
  padding: 12px 8px;
  width: 100%;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 30px;
  background: var(--secondary-color);
  border: none;
  transition: 0.3s ease;
}

.cta-btn:disabled {
  background: gray;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: auto;
}


/* ====================== GALLERY SECTION====================== */
.editorial-gallery {
  padding: 30px 80px;
  margin-bottom: 20px;
  max-width: 1320px;
  margin: auto;
  background: #F9F9F9;
}

.editorial-filters {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.editorial-filters button {
  background: none;
  font-size: 14px;
  color: var(--tertiory-color);
  cursor: pointer;
  position: relative;
  border: 1px solid black;
  padding: 12px 26px;
}

.editorial-filters button:hover {
  color: var(--white-color);
}

.editorial-filters button.active {
  width: fit-content;
  color: var(--tertiory-color);
}

.editorial-filters button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  color: var(--white-color);
}

.editorial-grid {
  column-width: 320px;
  column-gap: 28px;
  max-height: none !important;
  height: auto !important;
}

.editorial-item {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  height: auto !important;
  max-height: none !important;
}

.editorial-item img,
.editorial-item video {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.editorial-item:hover img,
.editorial-item:hover video {
  transform: scale(1.04);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white-color);
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: var(--white-color);
  cursor: pointer;
  line-height: 1;
}


/* WRAPPER */

.destination-wrapper {
  width: 95%;
  margin: auto;
  padding: 20px 0 10px;
  position: relative;
}

/* SLIDE */

.destination-slide {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.destination-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* TEXT */

.destination-slide-text {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: 0.4s;
}

.destination-slide-text h2 {
  color: var(--white-color);
  margin-bottom: 8px;
}

/* show text only on center slide */

.slick-center .destination-slide-text {
  opacity: 1;
}

/* SCALE EFFECT */

.destination-main-slider .slick-slide {
  margin: 0 8px;
  transform: scale(.75);
  transition: 0.35s;
  opacity: .8;
}

.destination-main-slider .slick-center {
  transform: scale(1.15);
  opacity: 1;
  z-index: 2;
}

.slick-track {
  display: flex !important;
  align-items: center;
}

/* DESKTOP BUTTONS */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
  z-index: 10;
  color: var(--secondary-color);
}

.slider-prev {
  left: 5%;
}

.slider-next {
  right: 5%;
}

/* MOBILE NAV BUTTONS */

.mobile-nav {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  gap: 15px;
  z-index: 20;
}

.mobile-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  background: transparent;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE */

@media(max-width:768px) {

  .destination-slide img {
    height: 420px;
  }

  /* adjust scale */

  .destination-main-slider .slick-slide {
    transform: scale(.9);
  }

  .destination-main-slider .slick-center {
    transform: scale(1);
  }

  /* hide desktop buttons */

  .slider-btn {
    display: none;
  }

  /* show mobile buttons */

  .mobile-nav {
    display: flex;
  }

}

/* ====================== DESTINATION WEDDING SLIDER ====================== */
.weddingcontact-form {
  background: radial-gradient(circle at top right,
      var(--secondary-color),
      var(--primary-color));
  max-width: 1320px;
  margin: 20px auto;
  text-align: center;
  padding: 40px 0px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.weddingcontact-form h2 {
  color: var(--white-color);
  font-size: 25px;
}

.weddingcontactdetails {
  display: grid;
  padding: 4px 5px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.weddingcontactdetails input,
.weddingcontactdetails button {
  padding: 14px;
  font-size: 14px;
  box-sizing: border-box;
  background: var(--white-color);
}

.weddingcontactdetails button:hover {
  color: var(--white-color);
}

.section {
  width: 100%;
  min-width: 1400px;
  margin: auto;
  padding: 20px 0px;

}

.slider-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;

}

.side {
  position: relative;
  height: 550px;
  border: 1px solid var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}

.side-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--secondary-color);
  letter-spacing: 1px;
  line-height: var(--base-line-height);
  margin: 80px;
}

.side-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: .7s ease;
}

.side.show .side-img {
  opacity: .5;
  transform: scale(1);
}

.desktop-btn {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  background: var(--white-color);
  color: var(--secondary-color);
  font-size: 22px;
  cursor: pointer;
  z-index: 3;
  display: block;

}

.left .desktop-btn {
  right: 25px;
}

.right .desktop-btn {
  left: 25px;
}

.slider {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.caption {
  text-align: center;
  margin-top: 25px;
}

.desktop-title {
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.caption p {
  max-width: 500px;
  margin: auto;
  line-height: var(--base-line-height);
}

.center-container {
  position: relative;

}

.mobile-nav {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.mobile-btn {
  position: static !important;
  transform: none !important;
  display: none;
  width: 45px;
  height: 45px;
  font-size: 16px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  background: var(--white-color);
  color: var(--secondary-color);
  font-size: 20px;
  cursor: pointer;
}

/* ====================== CORPORATE EVENT STYLES ====================== */
/* HERO SECTION */

.mainherobanner {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}

/* BANNER ITEMS */

.banneritem {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s ease;
}

.banneritem.activebanner {
  opacity: 1;
}

/* OVERLAY */

.banneroverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.bannercontent {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white-color);

}


.bannercontent p {
  margin-bottom: 25px;
  line-height: var(--base-line-height);
  ;
}

.bannerbtn {
  padding: 14px 30px;
  border: none;
  background: #fff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}



/* CONTROLS */

.bannercontrols {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.bannercontrol {
  padding: 2px 16px;
  background: var(--secondary-color);
  opacity: .5;
  cursor: pointer;
  font-size: 14px;
}

.bannercontrol.activecontrol {
  opacity: 1;
  background: var(--white-color);
  color: #fff;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .bannercontent h1 {
    text-align: left;
  }

  .bannercontent {
    left: 0%;
  }

}

/*  */

.event-slider {
  position: relative;
  max-width: 1320px;
  margin: auto;
  padding: 0px 20px;
}

.event-slider-viewport {
  overflow: hidden;
}

.event-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.event-slide {
  flex: 0 0 33.3333%;
  padding: 0 15px;
  text-align: center;
}

.event-slide img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.event-slide h4 {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 2px;
}

.event-slide p {
  color: var(--paragraph-color);
}

.event-arrow {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.desktop-control {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 999;
  background-color: var(--white-color);
}

.event-prev.desktop-control {
  left: 0;
}

.event-next.desktop-control {
  right: 0;
}

.event-mobile-controls {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.4rem;
}

.section-title p {
  color: var(--paragraph-color);
  margin-top: 10px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.event-card {
  background: var(--white-color);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .4s;
}

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

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

.event-card .content {
  padding: 25px;
}

.event-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.event-card p {
  color: var(--paragraph-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-box {
  background: var(--white-color);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.why-box h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.why-box p {
  color: var(--primary-color);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: .4s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.cta {
  background: linear-gradient(135deg, var(--secondary-color), #14b8a6);
  color: var(--white-color);
  text-align: center;
  border-radius: 30px;
  padding: 80px 30px;
}

.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 25px;
}

form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

input,
select,
textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: .95rem;
  width: 100%;
}

textarea {
  grid-column: 1/-1;
  resize: none;
  height: 120px;
}

button[type="submit"] {
  grid-column: 1/-1;
  padding: 12px 15px;
  border: none;
  background: var(--white-color);
  color: #000;
  border: 1px solid white;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s;
}

button[type="submit"]:hover {
  background: var(--tertiory-color);
  color: var(--white-color);
}

/* ======================USEFUL LINKS ====================== */
.useful-links ul {
  padding: 0;
}

.useful-links li {
  list-style: none;
  margin: 10px 0;
}

.useful-links a {
  display: inline-block;
  color: var(--white-color);
  transition: 0.3s;
  position: relative;
}

.useful-links a::before {
  content: "•";
  margin-right: 10px;
  opacity: 0;
  transition: 0.4s;
  color: var(--secondary-color);
}

.useful-links a:hover {
  color: var(--secondary-color);
  transform: translateX(6px);
}

.useful-links a:hover::before {
  opacity: 1;
}

/* ====================== FOOTER ====================== */
.hf-footer {
  display: block !important;
  background: var(--tertiory-color);
  color: var(--white-color);
  position: relative;
  padding: 0px 30px;
  overflow: hidden;
}

.hf-brand-bar {
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  flex-wrap: wrap;
  padding: 10px 90px;
}

.hf-brand-bar img {
  height: 60px;
  width: 100px;
}

.hf-main {
  margin: auto;
  /* padding: 120px 30px 60px; */
  padding: 40px 20px 20px;
  display: flex;
  gap: clamp(20px, 2.5vw, 36px);
  justify-content: space-between;
  flex-wrap: wrap;
}

.hf-col {
  flex: 1 1 260px;
  min-width: 240px;
  text-align: start;

}

.hf-footer h3 {
  color: var(--white-color);
  margin-bottom: 35px;
  position: relative;
}

.hf-footer h3::after {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--secondary-color);
  position: absolute;
  left: 0;
  bottom: -10px;
}

.hf-contact h3 {
  margin-bottom: 30px;
}

.hf-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hf-contact li {
  margin-bottom: 5px;
  display: flex;
  gap: 13px;

  line-height: var(--base-line-height);
}


.hf-social {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.hf-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: .3s;
}

.hf-social a:hover {
  background: var(--white-color);
  color: var(--tertiory-color);
}

.hf-links ul {
  list-style: none;
}

.hf-links li {
  margin-bottom: 15px;
}

.hf-links a {
  color: var(--white-color);
  text-decoration: none;
  padding: 6px 12px;
  display: inline-block;
  transition: .3s;
}

.hf-links a.is-active {
  color: var(--white-color);
}

.hf-links a:hover {
  color: var(--secondary-color);
  padding-left: 25px;
  position: relative;
}

.hf-links a:hover::before {
  content: "•";
  position: absolute;
  left: 10px;
}

.hf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}

.hf-gallery img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.hf-newsletter input {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 0px;
  margin: 10px 0 20px;
}

.hf-newsletter button {
  width: 100%;
  color: var(--white-color);
  font-weight: 500;
  letter-spacing: 1px;
  padding: 14px;
  background: var(--secondary-color);
  border: none;
  border-radius: 0px;
  cursor: pointer;
}

.hf-bottom {
  text-align: center;
  color: var(--white-color);
  background: var(--tertiory-color);
  padding: 30px;
}

/* ====================== CONTACT FORM ====================== */
/* SECTION */
.contact-section {
  max-width: 1320px;
  margin: 50px auto;
  border: 1px solid #d5cfcf;
  padding: 60px;
  background: #fff;
}

/* GRID */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  min-height: 520px;
}

/* IMAGE */
.contactimage {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.contactimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    transition: transform 0.6s ease;
}
.contactimage:hover img {
  transform: scale(1.08); 
}
/* FORM BOX */
.contact-form {
  padding: 40px 50px; 
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  align-items: flex-end;       
  background: #fafafa;
}

/* HEADING */
.contact-form h3 {
  color: var(--subheading-color);
  margin-bottom: 30px;
  font-size: 24px;
  width: 100%;
  text-align: left; 
}

/* FORM */
.contact-form form {
  width: 100%;              
  max-width: 520px;  
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* INPUT GROUP */
.input-group {
  position: relative;
  width: 100%;
}

/* INPUTS */
.input-group input,
.input-group textarea {
  min-width: 100%;
  padding: 16px; 
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
  background: transparent;
  transition: 0.3s;
}

/* TEXTAREA */
.input-group textarea {
  min-height: 140px;
  resize: none;
}

/* LABEL */
.input-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: #fafafa;
  padding: 0 6px;
  font-size: 14px;
  color: var(--paragraph-color);
  pointer-events: none;
  transition: 0.3s;
}

/* TEXTAREA LABEL FIX */
.input-group textarea + label {
  top: 20px;
  transform: none;
}

/* FOCUS */
.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--subheading-color);
}

/* FLOAT LABEL */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color:black;
}

/* BUTTON */
.contact-form button {
  width: 100%; 
  background: var(--secondary-color);
  color: #fff;
  padding: 16px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: 0.3s;
}



/* MAIN WRAPPER */
.dh-contact-area{
  max-width:1320px;
  margin:80px auto;
  padding:0 20px;
  text-align:center;
}

/* TOP CONTENT */
.dh-contact-top small{
  color:var(--secondary-color);
  letter-spacing:1px;
  font-size:15px;
}

.dh-contact-top h2{
  font-size:2.3rem;
  color:var(--subheading-color);
  margin:10px 0;
  font-weight: 700;
}



.dh-contact-top p{
  color:var(--paragraph-color);
  max-width:700px;
  margin:15px auto 50px;
  line-height:var(--base-line-height);
}

/* GRID */
.dh-box-wrapper{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.dh-contact-card{
  background:#95dcf014;
  padding:40px 30px;
  border-radius:18px;
  transition:0.4s ease;
  border:1px solid var(--secondary-color);
}

.dh-contact-card:hover{
  transform:translateY(-8px) scale(1.02);
}

/* ICON */
.dh-icon{
  font-size:34px;
  color:var(--secondary-color);
  margin-bottom:15px;
}

/* TITLE */
.dh-contact-card h3{
  margin-bottom:10px;
}

/* TEXT */
.dh-contact-card p{
  color:var(--paragraph-color);
  line-height:var(--base-line-height);
}

.map-container {
  margin: auto;
}

/* ================== HEADER ================== */
.map-header {
  text-align: center;
  margin-bottom: clamp(20px, 5vw, 40px);
}

.map-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.map-header p {
  margin-top: 16px;
  /* font-size:clamp(0.95rem,2.5vw,1.1rem); */
  color: var(--paragraph-color);
  line-height: var(--base-line-height);
}

/* ================== MAP ================== */
.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  max-height: 400px;
}

.hotel-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

/* ================== BUTTON ================== */
.directions-btn {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 14px;
  transition: .3s;
}

.directions-btn:hover {
  color: var(--white-color);
}

/* ================== FEATURES ================== */
.map-features {
  margin-top: clamp(30px, 6vw, 50px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 4vw, 30px);
  background: #F9F9F9;
  padding: clamp(20px, 5vw, 40px);
  border-radius: 20px;
}

.feature {
  text-align: center;
}

.feature i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 14px;
}

.feature h4 {
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--paragraph-color);
}


/* ====================== FEEDBACK SECTION ====================== */

.feedback {
  background: #F9F9F9;
  padding: clamp(40px, 6vw, 80px) 20px;
  margin: 0px auto;
  margin-top: clamp(40px, 5vw, 100px);
}

.feedback-header {
  position: relative;
  max-width: 1400px;
  margin-bottom: 60px;
  margin: auto;
  text-align: center;
  padding: 0px 10px;
}

.feedback-header h2 {
  /* font-size: clamp(28px, 4vw, 48px); */
  font-size: 1.6rem, 4vw, 2.4rem;
  margin-top: 10px;
}

.feedback-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 60px auto;
}

.feedback-card {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.card-box {
  background: var(--white-color);
  padding: 35px;
  position: relative;
}

.card-box:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.card-box:hover .stars {
  color: var(--white-color);
}

.stars {
  color: yellow;
  font-size: 18px;
  margin-bottom: 15px;
}

.card-box p {
  line-height: var(--base-line-height);
}

.card-box .arrow {
  position: absolute;
  bottom: -15px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.user h4 {
  margin: 0;
  font-size: 18px;
}

.user span {
  color: var(--secondary-color);
  font-size: 14px;
}

/* ====================== VENUE SECTION ====================== */
.venue-section {
  max-width: 1320px;
  margin: auto;
  padding: 0px 10px;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.filter-bar select {
  border: 1px solid black;
  border-radius: 0px;
  padding: 10px 5px;
  font-size: 16px;
  outline: none;
}

.venue-cards {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
}

.venue-card {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgb(198, 193, 193);
}

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

.venue-card h3 {
  color: var(--secondary-color);
  margin: 20px auto;
  font-size: 18px;
}

.location {
  font-size: 14px;
  margin-bottom: 15px;
  text-align: left;
}

.desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.enquire-btn {
  padding: 10px 24px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.enquire-btn:hover {
  background: #000;
  color: var(--white-color);
}

.factsheetsection {
  background-color: transparent !important;
  padding: 60px 0px;
}

/* ====================== EVENT SLIDER ====================== */
.event-slider {
  position: relative;
  max-width: 1320px;
  margin: auto;
  padding: 0px 20px;
}

.event-slider-viewport {
  overflow: hidden;
}

.event-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.event-slide {
  flex: 0 0 33.3333%;
  padding: 0 15px;
  text-align: center;
}

.event-slide img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.event-slide h4 {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 2px;
  padding-bottom: 5px;
}

.event-slide p {
  color: var(--paragraph-color);
  padding: 0px 15px;
  font-size: 13px;
}

.event-arrow {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.desktop-control {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 999;
  background-color: var(--white-color);
}

.event-prev.desktop-control {
  left: 0;
}

.event-next.desktop-control {
  right: 0;
}

.event-mobile-controls {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

/* ======================EVENTS PAGE SLIDER  ====================== */
.container {
  width: 100%;
  height: 70vh;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: hidden;
}

.slide .item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 340px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  transition: 0.5s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.slide .item:nth-child(2) .content {
  display: block;
}

.slide .item:nth-child(3) {
  left: 60%;
}

.slide .item:nth-child(4) {
  left: 75%;
}

.slide .item:nth-child(5) {
  left: 90%;
}

.slide .item:nth-child(n+6) {
  display: none;
}

.content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 400px;
  display: none;
}

.content .name {
  font-size: clamp(28px, 4vw, 44px);
  width: 100%;
  font-weight: bold;
}

.content .description {
  margin: 15px 0;
  font-size: 16px;
}

.content button {
  padding: 10px 20px;
  border: none;
  background: var(--white-color);
  cursor: pointer;
  border-radius: 6px;
}

.button {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.button button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1ps solid var(--secondary-color);
  cursor: pointer;
  color: var(--secondary-color);

}

.weddingplaces {
  margin: 60px 0px;
}

/* ====================== BLOG PAGE ====================== */
.blog-cards {
  padding: clamp(40px, 6vw, 80px) 20px;
  background: #F9F9F9;
  margin-top: 80px;
}

.cards-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.card {
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.readmebtn {
  text-align: left;
  display: inline-block;
  border-radius: 2px;
  padding: 10px 22px;
  border: 2px solid var(--tertiory-color);
  color: var(--tertiory-color);
  text-decoration: none;
  font-size: 14px;
  transition: all .3s ease;
}

.readmebtn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.card.offset {
  transform: translateY(40px);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

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

.card-content {
  padding: 10px;
}

.card-content h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.card-content p {
  font-size: 15px;
  color: var(--paragraph-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Blog Detail Page */
.blog-detail {
  padding: 80px 20px;
  background: var(--white-color);
}

.blog-detail-container {
  max-width: 900px;
  margin: auto;
  background: var(--white-color);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.blog-detail-container h1 {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.blog-meta {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.blog-detail-container img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin: 30px 0;
}

#blogContent p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
/*blog new   */
        .blog-detail {
            padding: 60px 0;
            background: #f9f9f9;
        }
        
        .blog-detail-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        
        .blog-main {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .blog-header {
            padding: 30px 30px 20px;
            border-bottom: 1px solid #eee;
        }
        
        .blog-header h2 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .blog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--paragraph-color);
            font-size: 14px;
        }
        
        .blog-meta i {
            margin-right: 5px;
            color: var(--secondary-color);
        }
        
        .featured-image-container {
            padding: 20px 30px;
            background: #f5f5f5;
        }
        
        .blog-featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .blog-content {
            padding: 30px;
        }
        
        .blog-section {
            margin-bottom: 40px;
            padding: 20px;
            background: white;
            border-radius: 12px;
        }
        
        .section-title {
            font-size: 28px;
            color: var(--subheading-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            display: inline-block;
        }
        
        .section-content {
            line-height: var(--base-line-height);
            color: var(--paragraph-color);
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .section-content p {
            margin-bottom: 15px;
        }
        
        .section-content strong, 
        .section-content b {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .section-content em,
        .section-content i {
            font-style: italic;
            color: var(--paragraph-color);
        }
        
        .section-content u {
            text-decoration: underline;
        }
        
        .section-content h1 {
            font-size: 32px;
            margin: 25px 0 15px;
            color: var(--subheading-color);
        }
        
        .section-content h2 {
            margin: 20px 0 15px;
            color: var(--subheading-color);
        }
        
        .section-content h3 {
            font-size: 24px;
            margin: 18px 0 12px;
            color: var(--subheading-color);
        }
        
        .section-content h4 {
            font-size: 20px;
            margin: 15px 0 10px;
            color: var(--subheading-color);
        }
        
        .section-content ul,
        .section-content ol {
            margin: 15px 0 15px 30px;
        }
        
        .section-content li {
            margin-bottom: 8px;
        }
        
        .section-content a {
            color: var(--secondary-color);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
        }
        
        .section-content a:hover {
            border-bottom-color: var(--secondary-color);
        }
        
        .section-content blockquote {
            margin: 20px 0;
            padding: 15px 20px;
            border-left: 4px solid var(--secondary-color);
            background: #f9f9f9;
            font-style: italic;
        }
        
        .section-content code {
            background: #f4f4f4;
            padding: 2px 5px;
            border-radius: 4px;
            font-family: monospace;
            font-size: 14px;
        }
        
        .section-content pre {
            background: #f4f4f4;
            padding: 15px;
            border-radius: 8px;
            overflow-x: auto;
            font-family: monospace;
            margin: 15px 0;
        }
        
        .section-content img {
            max-width: 100%;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .section-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 8px;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 30px;
         }
        
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #8bdbf4, transparent);
            margin: 30px 0;
        }
        
        .blog-tags {
            padding: 20px 30px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin: 20px 0;
        }
        
        .blog-tags span {
            display: inline-block;
            background: #f0f0f0;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 0 5px 5px 0;
            font-size: 12px;
            color:var(--paragraph-color);
        }
        
        .blog-share {
            padding: 20px 30px;
            text-align: center;
        }
        
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .share-buttons a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 5px;
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .share-buttons a:hover {
            opacity: 0.8;
        }
        
        .share-facebook { background: #3b5998; }
        .share-twitter { background: linear-gradient(
  135deg,
  #feda75,
  #fa7e1e,
  #d62976,
  #962fbf,
  #4f5bd5
);}
        .share-linkedin { background: #0077b5; }
        
        .sidebar {
            position: sticky;
            top: 30px;
        }
        
        .sidebar-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .sidebar-card h3 {
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            display: inline-block;
        }
        
        .sidebar-card .post {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-card .post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .sidebar-card .post img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .sidebar-card .post p {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .sidebar-card .post span {
            font-size: 12px;
            color: var(--paragraph-color);
        }
        
        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            cursor: pointer;
        }
        
        .lightbox-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        
        .close-lightbox {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }
        
        @media (max-width: 993px) {
            .blog-detail-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .blog-header h1 {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .blog-meta {
                gap: 10px;
                font-size: 12px;
            }
            
            .section-gallery {
                grid-template-columns: 1fr;
            }
            
            .share-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .share-buttons a {
                width: 100%;
                justify-content: center;
            }
            
            .sidebar {
                position: static;
            }
        }
  

/* ====================== VENUE IMAGES ====================== */
.venue-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.venue-image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #F9F9F9;
}

.venue-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.venue-image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.venue-info {
  padding: 20px;
}

.venue-info h3 {
  margin: 0 0 10px 0;
  color: var(--paragraph-color);
  font-size: 1.4rem;
  font-weight: 600;
}

.venue-info .specs {
  color: var(--paragraph-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.venue-info .desc {
  color: var(--paragraph-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.enquire-btn {
  color: var(--territary-color);
  width: 100%;
  border: 1px solid black;
  letter-spacing: 1px;
}


/* faq stated */
.faq-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.faq-item {
  background: var(--white-color);
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--primary-color);
}

.faq-question span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s ease;
}

.faq-question.active span {
  transform: rotate(45deg);
  background: var(--primary-color);
  color: var(--white-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  line-height: var(--base-line-height);
  color: var(--paragraph-color);
}

/* privacy policy page */


.policydetails {
  max-width: 1320px;
  margin: auto;
  margin-bottom: 50px;
  padding: 40px 20px;
  line-height: var(--base-line-height);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}


.policydetails h2,
.policydetails h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  margin-top: 30px;
  font-weight: 600;
}


.policydetails p {
  margin-bottom: 15px;
  color: var(--paragraph-color);
}


.policydetails li {
  margin-left: 30px;
  padding-left: 5px;
  margin-bottom: 8px;
}

/* Policy quick links */
.identityproof {
  margin: 20px 0;
}

.identityproof li {
  list-style: none;
  margin-left: 0;
  padding: 8px 0;
  font-weight: 500;
  color: var(--primary-color);
}

/* FLOATING CONTAINER */
.floating-btns {
  position: fixed;
  right: 50px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
  animation: floatUp 0.8s ease forwards;
}

/* ENTRY ANIMATION */
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* BUTTON BASE */
.float-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  animation: gentleFloat 3s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes gentleFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

/* HOVER EFFECT */
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* ICON */
.float-btn i {
  font-size: 20px;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* WHATSAPP (PULSE EFFECT) */
.whatsapp-btn {
  background: #25D366;
  animation: pulse 2s infinite, gentleFloat 3s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* CALL (GLOW EFFECT) */
.call-btn {
  background: #5DC5E3;
  box-shadow: 0 0 12px #5dc6e3e2(0, 123, 255, 0.6);
}

/* CLICK RIPPLE EFFECT */
.float-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
}

.float-btn:active::after {
  transform: scale(1.5);
  opacity: 1;
  transition: 0.4s;
}
.weather-btn {
  position: relative;
  background: linear-gradient(135deg, #ff9800, #ff5622c4);
  cursor: pointer;
}

.weather-text {
  position: absolute;
  right: 75px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s;
}

.weather-btn:hover .weather-text {
  opacity: 1;
}

.weather-popup {
  position: absolute;
  right: 60px;
  bottom: 0px;
  width: min(280px, calc(100vw - 40px));
  background: rgba(29, 40, 92, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-popup.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.weather-popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: 600;
}

.weather-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.temp-main {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.desc-main {
  font-size: 16px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.extra-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.extra-info span {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.extra-info i {
  width: 16px;
  color: var(--secondary-color);
}

/* ============================================ GLOBAL DESKTOP: NO WRAP ============================================ */
@media (min-width: 991px) {
  * {
    flex-wrap: nowrap !important;
  }
}


/* ============================================NAVIGATION BREAKPOINTS============================================ */
@media (max-width: 991px) {
  .navbar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-left {
    display: none;
  }

  .top-info {
    display: none;
  }

  .overlay-menu {
    flex-direction: column;
  }

  .overlay-left,
  .overlay-right {
    width: 100%;
    padding: 50px 30px;
  }

  .overlay-links a {
    font-size: 24px;
  }

  .floating-btns {
    right: 15px;
    bottom: 20px;
  }

  .float-btn {
    width: 40px;
    height: 40px;
  }
    .dh-box-wrapper{
    grid-template-columns:1fr;
  }

  .dh-contact-top h2{
    font-size:32px;
  }
  .contact-form h3 {
  text-align: center; 
}
}

@media (max-width: 575px) {
  .top-info {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .nav-logo img {
    height: 50px;
  }

  .overlay-links a {
    font-size: 20px;
  }

  .header-contact {
    flex-direction: column;
    gap: 0px;
  }


  /*  */

  /* hide desktop menus */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* navbar layout */
  .navbar {
    grid-template-columns: auto 1fr auto;
    padding: 12px 20px;
  }

  /* logo on left */
  .nav-logo {
    justify-content: flex-start;
  }

  .nav-logo img {
    height: 52px;
  }

  /* show menu button */
  .menu-btn {
    display: block;
    justify-self: end;
    font-size: 26px;
  }
}

/* ============================================ MOBILE: 0 - 448px============================================ */
@media (max-width: 448px) {
  .title-wrapper {
    padding: 8px;
  }

  .filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .availability-box {
    padding: 6px 13px;
  }

  .availability {
    top: -100px;
  }

  #bookBtn {
    grid-column: 1 / -1;
    justify-self: center;
    width: 60%;
    margin-top: 15px;
  }

  /* Slider controls */
  .slider-controls {
    display: none;
    bottom: 20px;
    right: 20px;
    gap: 5px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Blog grid */
  .blog-grid {
    padding: 0px 20px;
    grid-template-columns: 1fr;
  }

  .bannercontent h1 {
    text-align: left;
  }

  h3 {
    font-size: 20px;
  }

  .roomTitle {
    font-size: 28px;
  }


  /* Contact section */
  .contact-section {
    padding: 0px;
    border: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 40px;
  }

  /* Facility */
  .facility-number {
    display: none;
  }

  /* Venue cards */
  .venue-cards {
    flex-wrap: wrap;
  }

  .venue-card {
    flex: 1 1 100%;
  }

  /* Event slider */
  .event-slide {
    flex: 0 0 100%;
  }

  .event-slide img {
    height: 300px;
  }

  .desktop-control {
    display: none;
  }

  .event-mobile-controls {
    display: flex;
  }

  /* Destination wedding */
  .section {
    min-width: 100%;
    padding: 10px;
  }

  .slider-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .side {
    display: none;
  }

  .slider {
    height: 300px;
  }

  /* Caption */
  .caption {
    margin-top: 20px;
  }

  .caption h3 {
    display: none;
  }

  .caption p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 15px;
    margin-top: 10px;
  }

  /* Events page */
  .slide .item:nth-child(3),
  .slide .item:nth-child(4),
  .slide .item:nth-child(5) {
    display: none;
  }

  .content {
    left: 5%;
    max-width: 90%;
  }

  .content .description {
    font-size: 14px;
  }

  /* Blog cards */
  .card.offset {
    transform: translateY(0);
  }

  /* Corporate events */
  section {
    padding: 0px 20px;
  }

  /* Destination wedding visibility controls */
  .desktop-title,
  .desktop-btn {
    display: none !important;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-btn {
    display: block;
    font-size: 15px;
  }

  /* Legacy styles (if still needed) */
  .left,
  .right {
    display: none;
    border: none;
  }

  /* rooms 3 cards */
  .roomCardGrid {
    grid-template-columns: 1fr;
    padding: 0px;
  }

  /* amenities 4 cards */
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .split-image,
  .room-image {
    height: 280px;
  }

  .facility-card .facility-image {
    height: 280px;
  }

  .map-overlay {
    position: relative;
    top: 20px;
    right: 0px;
    max-width: 100%;
  }

  .room-content {
    padding: 30px 0px;
  }

  .title-section {
    /* padding:0px 0px 60px 20px; */
    padding: 0px 20px;
  }

  /* destination contact */
  .weddingcontactdetails {
    padding: 0px 20px;
  }

  .editorial-gallery {
    padding: 20px 18px;
  }

  .editorial-filters {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .editorial-filters button {
    padding: 10px;
  }

  .room-btn {
    width: 8px;

  }


  /*destination slider */
  .destination-wrapper {
    padding-top: 0px;
    padding-bottom: 50px;
  }

  .feature i {
    font-size: 25px;
  }

  .venue-image-card img {
    padding: 0px 20px;
  }

  .selectedroomslider .slider-dots {
    top: 150px;
  }

  .blog-grid-3 {
    grid-template-columns: 1fr;
  }
  .blog-card{
    h3{
      font-size: 15px;
    }
  }
  
.blog-detail-container h1 {
    font-size: 18px;
}
}

/* ============================================MOBILE MEDIUM: 449px - 567.98px============================================ */
@media (min-width: 449px) and (max-width: 567.98px) {
  .filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .availability-box {
    padding: 7px 22px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

  }


  .availability {
    top: -90px;
  }

  #bookBtn {
    grid-column: 1 / -1;
    justify-self: center;
    width: 60%;
    margin-top: 15px;
  }

  .slider-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .side {
    display: none;
  }

  /* Slider controls */
  .slider-controls {
    display: none;
  }

  /* Blog grid */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Typography */
  h3 {
    font-size: 20px;
  }

  /* Event slider */
  .event-slide {
    flex: 0 0 100%;
  }

  .event-slide img {
    height: 300px;
  }

  .desktop-control {
    display: none;
  }

  .event-mobile-controls {
    display: flex;
  }


  /* Contact section */
  .contact-section {
    padding: 10px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 40px;
  }

  /* Facility */
  .facility-number {
    display: none;
  }

  /* Venue cards */
  .venue-cards {
    flex-wrap: wrap;
  }

  .venue-card {
    flex: 1 1 100%;
  }

  /* rooms 3 cards */
  .roomCardGrid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .split-image,
  .room-image {
    height: 280px;
  }

  .facility-card .facility-image {
    height: 280px;
  }

  /* map */
  .map-overlay {
    position: relative;
    top: 20px;
    right: 0px;
    max-width: 100%;
  }

  /* Destination wedding visibility controls */
  .desktop-title,
  .desktop-btn {
    display: none !important;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-btn {
    display: block;
  }

  /* destination contact */
  .weddingcontactdetails {
    padding: 0px 20px;
  }

  .editorial-gallery {
    padding: 20px 18px;
  }

  /* Events page */
  .slide .item:nth-child(3),
  .slide .item:nth-child(4),
  .slide .item:nth-child(5) {
    display: none;
  }

  .editorial-filters {
    flex-wrap: nowrap;
  }

  /* destination slider */
  .destination-main-slider {
    padding-bottom: 60px;
  }

  .feature i {
    font-size: 27px;
  }

  .selectedroomslider .slider-dots {
    top: 200px;
  }

  .blog-grid-3 {
    grid-template-columns: 1fr;
  }
  .blog-card{
    h3{
      font-size: 15px;
    }
  }
  .blog-detail-container h1 {
    font-size: 18px;
}
}

/* ============================================  TABLET SMALL: 568px - 767.98px============================================ */
@media (min-width: 567.99px) and (max-width: 767.98px) {

  /* Event slider */
  .event-slide {
    flex: 0 0 100%;
  }

  .event-slide img {
    height: 300px;
  }

  .desktop-control {
    display: none;
  }

  .event-mobile-controls {
    display: flex;
  }

  .filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Destination wedding visibility controls */
  .desktop-title,
  .desktop-btn {
    display: none !important;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-btn {
    display: block;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  /* navbar layout */
  .navbar {
    grid-template-columns: auto 1fr auto;
    padding: 12px 20px;
  }

  /* logo on left */
  .nav-logo {
    justify-content: flex-start;
  }

  .nav-logo img {
    height: 52px;
  }

  /* show menu button */
  .menu-btn {
    display: block;
    justify-self: end;
    font-size: 26px;
  }

  /* nav top  header*/
  .top-info {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .header-contact {
    flex-direction: column;
    gap: 0px;
  }

  /* Venue cards */
  .venue-cards {
    flex-wrap: wrap;
  }

  /* Venue cards */
  .venue-cards {
    flex-wrap: wrap;
  }

  .venue-card {
    flex: 1 1 100%;
  }


  /* Blog grid */
  .blog-grid {
    grid-template-columns: 1fr;
  }


  /* Contact section */
  .contact-section {
    padding: 30px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 40px;
  }

  /* Facility */
  .facility-number {
    display: none;
  }

  .slider-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .side {
    display: none;
  }

  /* Slider controls */
  .slider-controls {
    display: none;
  }

  /* Destination wedding visibility controls */
  /* Events page */
  .slide .item:nth-child(3),
  .slide .item:nth-child(4),
  .slide .item:nth-child(5) {
    display: none;
  }

  .desktop-btn {
    display: none !important;
  }

  /* rooms 3 cards */
  .roomCardGrid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .split-image,
  .room-image {
    height: 360px;
  }

  .facility-card .facility-image {
    height: 360px;
  }

  /* map */
  .map-overlay {
    position: relative;
    top: 20px;
    right: 0px;
    max-width: 100%;
  }

  /* destination contact */
  .weddingcontactdetails {
    padding: 0px 20px;
  }

  .editorial-gallery {
    padding: 20px 18px;
  }

  /* destination slider */
  .destination-main-slider {
    padding-bottom: 60px;
  }

  .selectedroomslider .slider-dots {
    bottom: 100px;
  }

  .blog-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-card{
    h3{
      font-size: 18px;
    }
  }
  .blog-detail-container h1 {
    font-size: 20px;
}
}

@media (min-width: 767.99px) and (max-width: 991.98px) {
  .filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  /* hide desktop menus */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* navbar layout */
  .navbar {
    grid-template-columns: auto 1fr auto;
    padding: 12px 20px;
  }

  /* logo on left */
  .nav-logo {
    justify-content: flex-start;
  }

  .nav-logo img {
    height: 52px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  /* show menu button */
  .menu-btn {
    display: block;
    justify-self: end;
    font-size: 26px;
  }

  /* nav top  header*/
  .top-info {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  /* Venue cards */
  .venue-cards {
    flex-wrap: wrap;
  }

  .venue-card {
    flex: 1 1 100%;
  }

  /* Slider controls */
  .slider-controls {
    display: none;
  }

  /* Split wrapper */
  .split-wrapper {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 30px;
  }

  .split-content .title {
    font-size: 34px;
  }

  /* Contact section */
  .contact-section {
    padding: 30px;
  }

  /* Blog grid */
  .blog-grid {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  /* Facility */
  .facility-number {
    display: none;
  }

  /* Destination wedding */
  .section {
    min-width: 100%;
  }

  .slider-wrap {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
  }

  .slider {
    height: 350px;
  }

  .side {
    height: 450px;
  }

  /* Events page */
  .slide .item:nth-child(3),
  .slide .item:nth-child(4),
  .slide .item:nth-child(5) {
    display: none;
  }

  .desktop-btn {
    display: none !important;
  }

  .mobile-nav {
    display: flex;
    margin-top: 20px;
  }

  .mobile-btn {
    display: block;
  }

  .desktop-title {
    display: block;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* rooms 3 cards */
  .roomCardGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* contact page form */
  .contact-information {
    padding: 0px 20px;
  }

  .editorial-gallery {
    padding: 20px 18px;
  }

  /* event slider */
  .event-slide img {
    height: 270px;
  }

  /* destination slider */
  .destination-main-slider {
    padding-bottom: 60px;
  }

  .slider-prev,
  .slider-next {
    display: none;
  }

  .destination-slide-text {
    text-align: center;
  }

  .selectedroomslider .slider-dots {
    bottom: 50px;
  }

  .blog-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 991.99px) and (max-width: 1199.98px) {

  /* Venue cards */
  .venue-cards {
    flex-wrap: wrap;
  }

  .venue-card {
    flex: 1 1 100%;
  }

  /* Filter bar */
  .filter-bar {
    grid-template-rows: 2fr;

  }

  /* Blog grid */
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Availability box */
  .availability-box {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Buttons */
  .cta-btn {
    width: 180px;
  }

  /* Facility card */
  .facility-card .facility-number {
    font-size: 1.5rem;
    left: 50%;
  }

  /* Destination wedding visibility controls */
  .mobile-nav {
    display: none !important;
  }

  .mobile-btn {
    display: none !important;
  }

  .desktop-btn {
    display: block !important;
    width: 40px;
    height: 40px;
  }

  .desktop-title {
    display: block;
  }

  .contact-section {
    padding: 33px 19px;
  }

  .editorial-gallery {
    padding: 20px 18px;
  }

  /* event slider */
  .event-slide img {
    height: 300px;
  }
}

@media (min-width: 1200px) {

  /* Header/Footer main */
  .hf-main {
    flex-wrap: nowrap;
  }

  .hf-col {
    flex: 1;
  }

  /* Destination wedding visibility controls */
  .mobile-nav {
    display: none !important;
  }

  .mobile-btn {
    display: none !important;
  }

  .desktop-btn {
    display: block !important;
  }

  .desktop-title {
    display: block;
  }

}

@media (min-width: 991.99px) and (max-width: 1112px) {
  .hf-main {
    display: flex;
    flex-wrap: nowrap !important;
    gap: 20px;
  }

  .hf-col {
    flex: 1 1 0 !important;
    min-width: 0 !important;
  }

  .editorial-gallery {
    padding: 20px 18px;
  }
}

/* industrial training */
.internshilList li {
  margin-left: 20px;
}

/* ===== MAIN LAYOUT ===== */
.blog-layout {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
}

/* BLOG GRID FIX */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.blog-card {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* SEARCH */
.search-box {
  background: #f1f1f1;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
}

/* SIDEBAR CARD */
.sidebar-card {
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
}

.sidebar-card h3 {
  padding: 20px 0px;
}

/* POSTS */
.post {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.post p {
  padding: 5px 0px;
}

.post p:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.post img {
  width: 70px;
  height: 65px;
  object-fit: cover;
}

/* CATEGORY */
.category {
  list-style: none;
  padding: 10px 0px;
  line-height: 30px;
}

.category li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  cursor: pointer;

  &:hover {
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-underline-offset: 10px;
  }
}

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

/* TABLET */
@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  /*SIDEBAR TOP */
  .sidebar {
    order: -1;
    /* this moves sidebar ABOVE */
    position: relative;
    top: 0;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
