

/*description css*/

/* =========================
   CINEMATIC LUXURY HOTEL STYLE
   ========================= */
.hotel-info {
  font-family: "Segoe UI", system-ui, "Helvetica Neue", sans-serif;
  margin: 40px 0;
  line-height: 1.6;
  color: #333333;
}

.hotel-info .section {
  position: relative;
  background: #ffffff; 
  border-radius: 16px;
  padding: 30px 3%;
  margin-bottom: 40px;
  overflow: hidden;
}

.hotel-info .content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hotel-info h2,
.hotel-info h3,
.hotel-info p,
.pool-box {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  text-align: center;
}

.hotel-info h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #1a1a1a;
  text-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.hotel-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #222222;
  text-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.hotel-info .divider,
.hotel-info .subdivider {
  display: block;
  background: #c9a24d;
  margin: 12px auto 24px auto;
  height: 3px; 
  border-radius: 2px;
}

.hotel-info .divider { width: 120px; } 
.hotel-info .subdivider { width: 60px; }

.hotel-info p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #333333;
  width: 100%;
}

.hotel-info .highlight {
  font-weight: 600;
  color: #c9a24d;
}

.pool-box {
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 25px 20px;
  margin-top: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  color: #333333;
  text-align: center;
}

.pool-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  justify-content: center;
}

.pool-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: transform 0.3s ease;
  justify-content: center;
}

.pool-list li:hover { transform: translateY(-3px); }

.pool-list i {
  color: #c9a24d;
  font-size: 1.3rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite, shimmer 2s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes shimmer {
  0%, 100% { text-shadow: 0 0 2px #c9a24d, 0 0 5px #c9a24d; }
  50% { text-shadow: 0 0 6px #fff3c0, 0 0 12px #c9a24d; }
}

.pool-meta {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.6;
  text-align: center;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

@media (max-width: 768px) {
  .hotel-info .section { padding: 20px 4%; }
  .hotel-info h2 { font-size: 2rem; }
  .hotel-info h3 { font-size: 1.4rem; }
  .hotel-info p { font-size: 0.95rem; }
}

/*description css END */






/*policy css start */

 /* Full-bleed section */
  .policy-section {
    background: #f7f4f2;
    padding: 40px 0;
    border-top: 1px solid #e3ddd9;
    width: 100%;
  }

  .policy-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .policy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 20px;
    align-items: stretch; /* equal height cards */
  }

  @media (min-width: 900px) {
    .policy-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px 30px;
    }

    /* Add subtle vertical divider between columns */
    .policy-item:nth-child(odd) {
      border-right: 0px solid #e3ddd9;
      padding-right: 25px;
    }

    .policy-item:nth-child(even) {
      padding-left: 25px;
    }
  }

  /* Cards blending with background */
  .policy-item {
    background: #f7f4f2;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.25s ease, background 0.25s ease;
    width: 100%;
    box-sizing: border-box;
    flex-direction: row;
    height: 100%;
  }

  .policy-item:hover {
    transform: translateY(-2px);
    background: #f0ebe7;
  }

  /* Icon with subtle circular background */
  .policy-icon {
    font-size: 24px;
    color: #cbbdb5; /* subtle single color */
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f2ef;
    margin-top: 2px;
  }

  /* Text inside card */
  .policy-item div {
    line-height: 1.6;
    color: #6f6661;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .policy-item strong {
    font-weight: 600;
    display: block;
    color: #4a423c;
  }

  @media (max-width: 768px) {
    .policy-item div {
      font-size: 13px;
    }

    /* Remove vertical divider on small screens */
    .policy-item:nth-child(odd),
    .policy-item:nth-child(even) {
      border-right: none;
      padding-right: 20px;
      padding-left: 20px;
    }
  }


/*policy css end */










/* websitenote css start */




:root {
  --gap-sm: 10px;
  --gap-md: 16px;
  --radius-lg: 18px;
}

/* ==============================
   VENUE / PORTFOLIO STYLE
============================== */
.venue-section {
  font-family: "Segoe UI", system-ui, sans-serif;
  padding: 20px 0 0;
}

.venue-title {
  text-align: center;
  margin-bottom: 18px;
}

.venue-title h2 {
  font-size: 2.4rem;
  margin-bottom: 6px;
  color: #ccc1bd;
}

.venue-title p {
  max-width: 720px;
  margin: auto;
  color: #fff;
  font-size: 0.95rem;
}

.venue-section .venue {
  position: relative;
  width: 100%;
  padding: 135px 4%;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--gap-md);
  min-height: 480px;
  transition: transform .5s ease, background-position .3s ease;
}

.venue-section .venue:hover {
  transform: scale(1.01);
}

.venue-section .venue::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.15);
}

.venue-section .venue .content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  color: #fff;
  padding: 20px 16px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  border-radius: 14px;
}

.venue-section .venue h3 {
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: #c9a24d;
  text-shadow: 0 4px 14px rgba(0,0,0,0.7);
}

.venue-section .subtitle {
  color: #fff !important;
  line-height: 1.6;
  font-size: 1rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  margin-bottom: 8px;
}

.venue-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all .9s ease;
}

.venue-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   LOCATION SECTION (reuse same style)
============================== */
.location-section {
  padding: 18px 0;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.location-title {
  text-align: center;
  margin-bottom: 12px;
}

.location-title h2 {
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.location-title p {
  max-width: 90%;
  margin: auto;
  color: #666;
  font-size: 0.95rem;
}

.location-tabs {
  text-align: center;
  margin-bottom: 20px;
}

.tab-btn {
  display: inline-block;
  background: #eee;
  border: none;
  padding: 10px 18px;
  margin: 0 6px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #c9a24d;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.location-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  align-items: center;
  margin-bottom: var(--gap-md);
}

.location-item:nth-child(even) {
  direction: rtl;
}
.location-item:nth-child(even) .location-text {
  direction: ltr;
}

.location-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(0,0,0,0.25);
}

.location-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .6s ease;
}

.location-img:hover img {
  transform: scale(1.08) translateY(-6px);
}

.location-img::after {
  content: attr(data-title);
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.location-text h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.location-text small {
  color: #999;
  display: block;
  margin-bottom: 6px;
}

.location-text p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .location-item {
    grid-template-columns: 1fr;
  }
}



/* websitenote css end */








/* terms css start */

/* Full-bleed section */
  .privacy-section {
    background: #f7f4f2;
    padding: 40px 0;
    width: 100%;
  }

  .privacy-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 20px;
    align-items: stretch; /* equal height cards */
  }

  @media (min-width: 900px) {
    .privacy-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px 30px;
    }
  }

  /* Cards blending with background */
  .privacy-item {
    background: #f7f4f2;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.25s ease, background 0.25s ease;
    width: 100%;
    box-sizing: border-box;
    flex-direction: row;
    height: 100%; /* equal height */
  }

  .privacy-item:hover {
    transform: translateY(-2px);
    background: #f0ebe7;
  }

  /* Icon with subtle circular background */
  .privacy-icon {
    font-size: 24px;
    color: #cbbdb5; /* single subtle color */
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f2ef;
    margin-top: 2px;
  }

  /* Text inside card */
  .privacy-item div {
    line-height: 1.6;
    color: #6f6661;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .privacy-item strong {
    font-weight: 600;
    display: block;
    color: #4a423c;
    margin-bottom: 5px;
  }

  @media (max-width: 768px) {
    .privacy-item div {
      font-size: 13px;
    }
  }


/* terms css end */






/* image slider start */
     
        html {
            scroll-behavior: smooth;
        }

.ratio2_3 .bg-size:before {
    padding-top: 0px;
}


.img-box {
    background-color: #f5f5f5; /* Light grey background */
    min-height: 140px; /* Adjust height as needed */
    position: relative;
}

.img-box img {
    display: block;
    width: 100%;
     height: 140px;
	object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease; /* Smooth transition */
}

.img-box img.loaded {
    opacity: 1;
}



		
/* image slider end */