/* Header Default Style */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Light black transparency */
  backdrop-filter: blur(6px);
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.4s ease, background 0.3s ease;
  z-index: 9999;
}

/* Hide Animation */
.header.hide {
  transform: translateY(-100%);
}

/* When scrolling up show with darker bg */
.header.show {
  background: rgba(0, 0, 0, 0.75);
}

/* Logo */
.logo img {
  height: 30px;
  transition: height 0.3s ease;
}

.header.show .logo img {
  height: 50px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 20px;

  background: rgba(0, 0, 0, 0.45);   /* light black */
  backdrop-filter: blur(10px);       /* glass effect */
  -webkit-backdrop-filter: blur(10px);

  transition: background 0.3s ease;
}


/* Header (unchanged) */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  padding: 12px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  transition: 0.3s ease-in-out;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 65%;
  height: 100vh;

  /* BLACK + BLUR EFFECT */
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(12px);

  box-shadow: -2px 0 30px rgba(0,0,0,0.9);
  padding-top: 90px;
  transition: right 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 998;
}

/* Open Menu */
.mobile-menu.open {
  right: 0;
}

/* Menu List Styling */
.mobile-menu ul {
  list-style: none;
  padding-left: 25px;
}

.mobile-menu ul li {
  margin-bottom: 18px;
}

/* MOBILE LOGO IMAGE SIZE */
@media (max-width: 768px) {
  .logo img,
  .header-logo img,
  .mobile-header img {
    width: 150px;     /* 🔽 smaller logo */
    height: auto;
    max-height: 36px;
  }
}
@media (max-width: 768px) {
  header img {
    width: 100px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hamburger {
    width: 24px;
    height: 18px;
  }

  .hamburger span {
    height: 2px;
  }
}

/* HIDE CHECKBOX */
#menuToggle {
  display: none;
}

/* FORCE SMALL MOBILE HAMBURGER ICON */
@media (max-width: 768px) {

  header .hamburger,
  .hamburger {
    width: 22px !important;
    height: 16px !important;
    padding: 0 !important;
  }

  header .hamburger span,
  .hamburger span {
    height: 1px !important;     /* THIN LINE */
    width: 75% !important;     /* SHORT LINE */
    margin: 0 !important;
    background-color: #fff !important;
    border-radius: 2px !important;
  }
}

#menuToggle:checked ~ .mobile-menu


/* X ANIMATION */
#menuToggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#menuToggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#menuToggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU CLOSED */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 65%;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  transition: 0.4s ease;
  z-index: 1001;
}

/* MOVE HAMBURGER ICON TO RIGHT SIDE */
@media (max-width: 768px) {

  .hamburger {
    position: absolute !important;
    right: 16px !important;   /* distance from right */
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 9999 !important;
  }

}


/* MOBILE MENU OPEN (THIS WAS FAILING BEFORE) */
#menuToggle:checked ~ .mobile-menu {
  right: 2;
}

/* MENU LIST */
.mobile-menu ul {
  list-style: none;
  padding: 80px 20px;
}

.mobile-menu ul li {
  margin-bottom: 16px;
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}


/* Text Styles + Gold Hover + Active State */
.mobile-menu ul li a {
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.8px;
  position: relative;
  padding-bottom: 5px;
  text-transform: capitalize;
  transition: 0.3s ease;
}

/* Golden Underline Effect (Hover + Active) */
.mobile-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #a87a18, #d4af37, #f8e88c);
  border-radius: 20px;
  transition: width 0.4s ease;
}

/* Hover Effect */
.mobile-menu ul li a:hover {
  color: #d4af37;
}

.mobile-menu ul li a:hover::after {
  width: 55%;
}

/* ACTIVE LINK GOLD STRONGER */
.mobile-menu ul li a.active {
  color: #d4af37;
}

.mobile-menu ul li a.active::after {
  width: 70%;
  background: linear-gradient(90deg, #d4af37, #fff6c3, #d4af37);
}

/* Luxury Slim Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@200;300;400&display=swap');

/* Main container */
.content {
  text-align: center;
  padding: 80px 20px;
}

/* Title - Slim elegant */
.flash-title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Text - Slim clean */
.content p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto 25px;
}

/* Button - Slim and elegant */
.content .btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 8px 20px;
  background: #d4af37;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  transition: all .3s ease;
}

.content .btn:hover {
  background: #c19b2e;
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 768px) {
  .flash-title { font-size: 24px; }
  .content p { font-size: 13px; }
  .content .btn { font-size: 12px; padding: 7px 18px; }
}

/* Mobile */
@media (max-width: 480px) {
  .flash-title { font-size: 15px; line-height: 1.3; }
  .content p { font-size: 12px; }
  .content .btn { font-size: 11px; padding: 6px 16px; }
}

/* Desktop stays normal */
.stay-grid {
  display: flex;
  gap: 20px;
}

/* Mobile swipe + slider */
@media (max-width: 768px) {
  .stay-grid {
    overflow: hidden;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 20px;
  }

  .stay-card {
    flex: 0 0 70%;
    scroll-snap-align: center;
    transition: transform 0.4s ease, opacity 0.4s;
    opacity: 0.6;
    transform: scale(0.92);
  }

  .stay-card.active {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide scrollbar */
.stay-grid::-webkit-scrollbar {
  display: none;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 6px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  background: #777;
  border-radius: 50%;
  transition: 0.3s;
}

.slider-dots span.active {
  width: 10px;
  height: 10px;
  background: #d4af37;
}

/* Slim font import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap');

.content {
  text-align: center;
  padding: 20px;
}

/* Title Styling: smaller, thin, white */
.zoom-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: 16px; /* smaller desktop size */
  color: #ffffff;
  line-height: 1.25;
  animation: zoomIn 9s ease-in-out infinite alternate;
  transform-origin: center;
}

/* Desktop Default */
.flash-title {
  font-size: 50px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.content p {
  font-size: 10px;
  text-align: center;
  white-space: normal;
}



/* Button Style */
.book-btn {
  color: #000 !important;
  border: 2px solid #000;
  background: transparent;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-top: 16px;
  display: inline-block;
}

.book-btn:hover {
  background: #000;
  color: #010101 !important;
}





/* Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.4s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.8s ease forwards;
}

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

/* Background + Layout */
.middle-info {
    padding: 0; /* remove spacing to avoid framed look */
    border: none; 
    outline: none;
    margin: 0;
}
section.middle-info {
    border: none !important;
    outline: none !important;
}

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

/* Heading & Gold Underline */
.title {
    font-size: 42px;
    font-weight: 500;
}

.gold-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.gold-underline::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #b08943, #d4af37, #f7e7b7);
    margin: 8px auto 0;
    border-radius: 3px;
}

/* Paragraph */
.description {
    font-size: 20px;
    line-height: 1.7;
    max-width: 800px;
    margin: auto;
    color: #e8e8e8;
}

/* Glass Box */
.highlight-box {
    margin-top: 40px;
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1.5px solid #111; /* ✔ Deep premium matte black */
    transition: 0.3s ease;
}
.highlight-box:hover {
    border-color: #d4af37; /* Gold on hover */
    transform: scale(1.02);
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 15px 32px;
    background: #d4af37;
    border-radius: 8px;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.cta-btn:hover {
    background: rgb(255, 255, 255);
    transform: scale(1.07);
}

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
    .title { font-size: 20px; }
    .description { font-size: 16px; }
    .highlight-box { padding: 20px; }
    .cta-btn { font-size: 16px; padding: 12px 25px; }
}


.middle-info {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 70px 20px;
    color: #fff;
    text-align: center;
}

.middle-info .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
}

.middle-info .container {
    position: relative;
    max-width: 920px;
    margin: auto;
    z-index: 2;
}

.middle-info .title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.middle-info .description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.highlight-box {
    background: rgba(0, 0, 0, 0.55);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4af37;
}

.highlight-box p {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* ✨ Call-to-action Button */
.cta-btn {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 15px 35px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    background: #b1902f;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .middle-info .title {
        font-size: 28px;
    }

    .middle-info .description {
        font-size: 16px;
    }

    .cta-btn {
        width: 80%;
        font-size: 17px;
        padding: 14px;
    }
}



#facilities {
  text-align: center;
  padding: 50px 20px;
}

.fac-title {
  color: #d4af37;
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* Desktop Grid */
.fac-slider-wrapper {
  overflow: hidden;
}

.fac-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  transition: transform 0.5s ease;
}

.fac-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: 0.4s ease;
}

.fac-item i {
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 8px;
}

.fac-item h4 {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-top: 5px;
}

.fac-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
}

/* Faster Scroll + New Box Shape */

.fac-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.fac-slider {
  display: flex;
  gap: 18px;
}

/* New Premium Box Shape */
.fac-item {
  min-width: 135px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(212, 175, 55, 0.7);
  backdrop-filter: blur(10px);
  padding: 18px;
  text-align: center;
  border-radius: 30px 6px 30px 6px; /* 🔥 Luxury Cut Edge Shape */
  color: #fff;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(212,175,55,0.15);
}

/* Icon Gold Glow */
.fac-item i {
  font-size: 30px;
  margin-bottom: 8px;
  background: linear-gradient(90deg,#ffdf7f,#d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fac-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 5px 0;
}

.fac-slider {
  display: flex;
  gap: 15px;
  padding: 10px;
  width: max-content;
  animation: autoScroll 22s linear infinite;
}

.fac-item {
  flex: 0 0 160px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.fac-item i {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.fac-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* Infinite scroll */
@keyframes autoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* 📱 Mobile Styling: 2 items visible */
@media(max-width: 768px){
  .fac-slider { gap: 12px; }

  .fac-item {
    flex: 0 0 48vw;
    min-height: 95px;
    padding: 15px;
  }

  .fac-item i {
    font-size: 26px;
  }

  .fac-item h4 {
    font-size: 13px;
  }
}


/* Hover Effect */
.fac-item:hover {
  transform: scale(1.07);
  border-color: #ffdf7f;
  box-shadow: 0 0 20px rgba(212,175,55,0.35);
}

/* Faster Auto Scroll Mobile */
@media(max-width:900px){
  .fac-slider{
    animation: scrollFast 10s linear infinite; /* ⏩ FASTER */
  }
}

@keyframes scrollFast{
  0% { transform: translateX(0); }
  100% { transform: translateX(-60%); }
}

/* Desktop Grid */
@media(min-width:900px){
  .fac-slider{
    flex-wrap: wrap;
    justify-content: center;
  }
  .fac-item{
    min-width:160px;
  }
}



/* ---- shared image styling ---- */
.about-slideshow img,
.gallery-grid img,
#lightbox img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  will-change: transform, box-shadow;
  cursor: pointer;
  backface-visibility: hidden;
  outline: none; /* we'll provide our own focus style */
}

/* subtle lifting + gold outline + glow on hover / focus */
.about-slideshow img:hover,
.gallery-grid img:hover,
.about-slideshow img:focus,
.gallery-grid img:focus {
  transform: scale(1.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),                    /* shadow depth */
    0 0 12px rgba(212,175,55,0.20),                   /* outer gold glow */
    0 0 30px rgba(212,175,55,0.10) inset;             /* soft inner tint */
  filter: saturate(1.05) contrast(1.02);
  border-radius: 12px;
}

/* optional thin gold ring (works well on light backgrounds) */
.gallery-grid img.hover-outline,
.about-slideshow img.hover-outline {
  box-shadow:
    0 20px 45px rgba(0,0,0,0.36),
    0 0 0 4px rgba(212,175,55,0.18),
    0 0 22px rgba(212,175,55,0.18) inset;
}

/* focus-visible for keyboard users */
.gallery-grid img:focus-visible,
.about-slideshow img:focus-visible {
  outline: 3px solid rgba(212,175,55,0.95);
  outline-offset: 6px;
  transform: scale(1.07);
}

/* ---- gallery layout tweaks ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

/* ---- lightbox styles ---- */
#lightbox {
  display: none; /* toggled by JS */
  position: fixed;
  inset: 0;
  background: rgba(8,8,10,0.8);
  align-items: center;
  justify-content: center;
  padding: 28px;
  z-index: 9999;
  transition: opacity 0.28s ease;
}

#lightbox.open {
  display: flex;
  opacity: 1;
}

#lightbox img {
  max-width: 92%;
  max-height: 88%;
  border-radius: 14px;
  transform: scale(.98);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.35s;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* when lightbox is open, pop the image with gold rim */
#lightbox.open img {
  transform: scale(1);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 0 18px rgba(212,175,55,0.22),
    0 0 36px rgba(212,175,55,0.10) inset;
  border: 4px solid rgba(212,175,55,0.12);
}

/* clickable close hint (small subtle area) */
#lightbox::after{
  content: "Click to close";
  position: absolute;
  bottom: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.4px;
  pointer-events: none;
}

/* small responsive tweak so hover doesn't mis-scale mobile taps */
@media (pointer: coarse) {
  .about-slideshow img,
  .gallery-grid img { transition: transform 0.25s ease; }
  .about-slideshow img:hover,
  .gallery-grid img:hover { transform: none; box-shadow: none; }
}

/* Facilities Section */
#facilities {
  margin-top: 60px;
}

.fac-title {
  color: #d4af37;
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.fac-item {
  padding: 25px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  transition: 0.35s ease-in-out;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

/* ICON STYLE */
.fac-item i {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 12px;
  transition: 0.3s;
}

/* DEFAULT WHITE TEXT */
.fac-item h4 {
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s;
}

/* Hover Effects */
.fac-item:hover {
  transform: scale(1.1);
  border-color: #ffffff;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
}

.fac-item:hover h4 {
  color: #d4af37;
}

.fac-item:hover i {
  transform: scale(1.15);
}

/* Responsive */
@media(max-width: 768px){
  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px){
  .fac-grid {
    grid-template-columns: 1fr;
  }
}



.middle-info {
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 4px solid #ffffff; /* White border */
}

.middle-info .overlay {
    background: rgba(0,0,0,0.4);
    position: absolute;
    inset: 0;
}

.middle-box {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

/* Gold Text */
.middle-info .title,
.middle-info .highlight-box h3 {
    color: #d4af37; /* Gold color */
    font-weight: 700;
}

.description {
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.8;
    font-size: 16px;
}

.highlight-box {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    backdrop-filter: blur(6px);
}

/* Button Styling */
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.cta-btn:hover {
    transform: scale(1.06);
    background: #d4af37;
    color: #000;
}
.about-text p {
  text-align: justify;
  line-height: 1.7;
  font-size: 16px;
}

.gold-heading {
  color: #d4af37;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ------- Parallax Banner ------- */
.parallax {
  background-image: url('https://images.unsplash.com/photo-1630695230041-8909e3204778?fm=jpg&q=60&w=3000');
  height: 90vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}

/* Optional dark overlay */
.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}

/* Glass Effect Box */
.glass-box {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 35px 50px;
  border-radius: 22px;
  max-width: 750px;
  text-align: center;
  z-index: 2;
}

.glass-box h1 {
  font-size: 42px;
  color: #d3a54f;
  font-weight: 700;
}

.glass-box p {
  color: #fff;
  margin-top: 10px;
  font-size: 17px;
}

/* Glow Button*/
.glow-btn {
  background: #d3a54f;
  color: #000;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
  transition: 0.4s;
  box-shadow: 0 0 14px #d3a54f55;
}

.glow-btn:hover {
  box-shadow: 0 0 20px #be9500, 0 0 35px #ffdd8c;
  transform: scale(1.05);
}

/* Fix Parallax on Mobile */
@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}


.feature-section {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.4s ease-out forwards;
}

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

.feature-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  animation: scroll 24s linear infinite;
  perspective: 600px;
}

.feature {
  scroll-snap-align: center;
  min-width: 150px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  text-align: center;
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px) scale(1.07);
  box-shadow: 0 0 22px gold;
  border-color: gold;
}

.feature img {
  width: 50px;
  height: 50px;
  transition: transform 0.4s ease;
}

.feature.active img {
  transform: rotateY(25deg) scale(1.2);
  filter: drop-shadow(0 0 10px gold);
}

.feature h4 {
  margin-top: 8px;
  font-size: 15px;
  color: white;
}

/* Auto Scroll Motion */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* iOS momentum */
.feature-carousel {
  scroll-behavior: smooth;
}

/* Mobile */
@media (max-width: 768px) {
  .feature {
    min-width: 130px;
  }
}




/* Global Footer Styling */
.luxury-footer {
    background-color: #0c0c0c;
    color: #ffffff;
    padding: 80px 10%;
    font-family: "Poppins", sans-serif;
}

/* Main Layout: 3 Columns */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    opacity: 0.7;
}

/* Middle Links Style */
.footer-links h3,
.footer-right h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #d4af37;
    opacity: 1;
}

/* Contact + Social Area */
.footer-right p {
    margin: 6px 0;
    opacity: 0.8;
}

.social-icons a {
    margin-right: 10px;
    font-size: 22px;
    color: #ffffff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #d4af37;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px){
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .social-icons a {
        margin-right: 20px;
    }
}
/* Floating Contact Bar – Bottom Right */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

/* Buttons */
.floating-contact .contact-btn {
    position: relative;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.28s;
    animation: pulse 10s infinite;
}

/* Icon Size */
.floating-contact .contact-btn img {
    width: 22px;
}

/* Hover Effect */
.floating-contact .contact-btn:hover {
    transform: scale(1.15);
    background: #d4af37;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.floating-contact .contact-btn:hover img {
    filter: brightness(0) invert(1);
}

/* Tooltip Label */
.floating-contact .contact-btn::after {
    content: attr(data-label);
    position: absolute;
    right: 60px;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    white-space: nowrap;
    transition: 0.3s;
}

/* Tooltip visible on hover for desktop */
@media(min-width: 769px) {
    .floating-contact .contact-btn:hover::after {
        opacity: 1;
    }
    .floating-contact .contact-btn:hover::before {
        content: "";
        position: absolute;
        right: 52px;
        top: 50%;
        width: 0;
        height: 0;
        border-left: 8px solid rgba(0,0,0,0.75);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        transform: translateY(-50%);
    }
}

/* Floating bounce animation */
@keyframes float {
    0% { transform: translateY(0) }
    50% { transform: translateY(-5px) }
    100% { transform: translateY(0) }
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    95% { transform: scale(1); }
    98% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile Responsive */
@media(max-width: 768px) {
    .floating-contact {
        bottom: 15px;
        right: 10px;
        gap: 12px;
    }

    .floating-contact .contact-btn {
        width: 44px;
        height: 44px;
    }

    .floating-contact .contact-btn img {
        width: 20px;
    }

    /* Hide tooltips on mobile for cleaner UI */
    .floating-contact .contact-btn::after,
    .floating-contact .contact-btn::before {
        display: none;
    }
}

/* GOLD GRADIENT BACKGROUND */
.footer-section {
  background: linear-gradient(145deg, #0f1210, #111413, #161616);
  border-top: 2px solid #d4af37;
  padding: 60px 20px;
  color: #fff;
  animation: fadeInFooter 1.2s ease forwards;
}

/* Fade animation */
@keyframes fadeInFooter {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 36% 32% 32%;
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Column 1 Center */
.footer-brand {
  text-align: center;
}

/* Logo Animation */
.footer-logo {
  width: 170px;
  margin-bottom: 12px;
  transition: 0.4s ease-in-out;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.6));
}

/* Tagline */
.motto {
  font-size: 15px;
  color: #d4af37;
  margin-bottom: 18px;
  letter-spacing: .5px;
}

/* Social Buttons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: #1b1b1b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(212,175,55,.4);
  transition: .35s ease;
}

.social-btn img {
  width: 22px;
  filter: brightness(80%);
  transition: .3s;
}

/* Hover animation with gold glow */
.social-btn:hover {
  transform: scale(1.25) rotate(6deg);
  background: linear-gradient(135deg,#d4af37,#8f7426);
  box-shadow: 0 0 15px rgba(212,175,55,.7);
}

.social-btn:hover img {
  filter: brightness(200%) invert(1);
}

/* Quick Links */
.footer-links h3,
.footer-contact h3 {
  color: #d4af37;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 17px;
}


.footer-links ul {
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: .3s;
  position: relative;
}

.footer-links a:hover {
  color: #d4af37;
}

/* Underline animation */
.footer-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #d4af37;
  position: absolute;
  bottom: -3px; left: 0;
  transition: .3s;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Payments */
.payment-strip img {
  width: 45px;
  margin-right: 8px;
  transition: .3s;
}

.payment-strip img:hover {
  transform: scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 45px;
  border-top: 1px solid rgba(212,175,55,.3);
  padding-top: 15px;
  font-size: 14px;
  color: #cfcfcf;
}

/* ----------------- MOBILE RESPONSIVE ----------------- */
@media(max-width: 820px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links ul,
  .footer-contact {
    text-align: center;
  }

  .payment-strip {
    justify-content: center;
  }
}


/* container for the section */
.middle-info {
  position: relative;
  overflow: hidden;     /* hide scaled corners */
  min-height: 420px;    /* adjust as needed */
  display: flex;
  align-items: center;
  color: #fff;
}

/* background layer (GPU-accelerated transform) */
.middle-info .bg {
  position: absolute;
  inset: 0;               /* top:0; right:0; bottom:0; left:0; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);    /* start scale */
  will-change: transform;
  z-index: 0;
  /* subtle, normal-speed zoom: 20s ease-in-out alternate makes it ping-pong */
  animation: bg-zoom 20s ease-in-out infinite alternate;
}

/* overlay and content stacking */
.middle-info .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* darken background a little */
  z-index: 1;
}

.middle-info .container {
  position: relative;
  z-index: 2;
  padding: 48px 24px;
}

/* keyframes: small scale so zoom is subtle and elegant */
@keyframes bg-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08); /* max zoom; change to 1.12 for bigger zoom */
  }
}

/* Optional — make it slightly faster on small screens (if desired) */
/* .middle-info .bg { animation-duration: 16s; } */

/* Accessibility: stop animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .middle-info .bg {
    animation: none;
    transform: scale(1.02); /* tiny fixed scale to keep visual interest */
  }
}

/* Ensure text remains readable on small screens */
@media (max-width: 768px) {
  .middle-info {
    min-height: 360px;
  }
  .middle-info .container {
    padding: 28px 18px;
  }
}


-------------------------drop-menu-stays-------
.nav-item {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 10px 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: #333;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

--------------------------
Contact-page

.contact-section {
  padding: 80px 20px;
  background: #0f0f0f;
  color: #fff;
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-top: 40px;
}

.contact-info h3 {
  font-size: 18px;
  color: #d4af37;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #d4af37;
}

.map-wrapper {
  flex: 1;
  text-align: center;
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    text-align: center;
  }

  .map-wrapper iframe {
    height: 260px;
  }
}



.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Background Image with Slow Zoom Effect */
.bg-image {
  background-image: url('https://cloudsnight.com/background-image/clouds-night-bg.jpg'); /* Change your image URL */
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  animation: zoom-bg 20s ease-in-out infinite;
}

@keyframes zoom-bg {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

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

.content {
  position: relative;
  z-index: 2;
  color: white;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .mobile-break {
    display: none;
  }

  h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .subtext {
    font-size: 16px;
  }
}


----booking-form-------
.contact-section {
  padding: 80px 20px;
  background: #0d0d0d;
  color: #fff;
}

.glass-box {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.contact-grid {
  display: flex;
  gap: 35px;
  margin-top: 40px;
}

.icon-box {
  margin-bottom: 20px;
  animation: floatIcon 3s infinite ease-in-out;
}

.icon-box span {
  font-size: 28px;
}

.icon-box h3 {
  color: #d4af37;
  margin: 6px 0;
}

.contact-info a {
  color: #fff;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #d4af37;
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  padding: 12px 20px;
  border-radius: 50px;
  margin-top: 15px;
  color: #000;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.booking-form input {
  width: 100%;
  margin: 8px 0;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

.booking-form button {
  width: 100%;
  padding: 14px;
  background: #d4af37;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
}

.booking-form button:hover {
  background: #fff;
  transform: scale(1.05);
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  border: none;
  margin-top: 50px;
}

/* Animation */
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
  .map-wrapper iframe {
    height: 260px;
  }
}


------------amenities------------
.dinner-section {
  padding: 100px 25px;
  background: #080808;
  color: white;
}

.dinner-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.dinner-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0px 0px 25px rgba(255,255,255,0.08);
  transition: .4s ease;
}

.dinner-image img:hover {
  transform: scale(1.03);
  border-color: #d4af37;
}

.dinner-content .highlight {
  font-size: 22px;
  margin-bottom: 10px;
  color: #d4af37;
}

.romantic-list {
  font-size: 18px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.romantic-list li {
  margin: 6px 0;
}

.description {
  opacity: .85;
  margin: 15px 0 25px;
  line-height: 1.7;
  font-size: 17px;
}

.price-tag p {
  font-size: 26px;
  font-weight: bold;
  color: #e4c778;
}

.price-tag span {
  font-size: 15px;
  opacity: .6;
  font-weight: normal;
}

.book-btn {
  display: inline-block;
  padding: 16px 26px;
  margin-top: 18px;
  background: #d4af37;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  font-size: 17px;
  text-align: center;
  transition: .3s;
}

.book-btn:hover {
  background: #f5d57a;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .dinner-layout {
    flex-direction: column;
    text-align: center;
  }
}
.amenities-section {
  padding: 100px 25px;
  background: #0b0b0b;
  text-align: center;
  color: #fff;
}

.romantic-text {
  font-size: 20px;
  font-style: italic;
  opacity: 0.85;
  margin-top: 5px;
  color: #e4c778;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.amenity-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 28px;
  border-radius: 18px;
  transition: .4s ease;
  backdrop-filter: blur(6px);
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.amenity-box img {
  width: 50px;
  margin-bottom: 14px;
  transition: .4s;
  filter: brightness(92%);
}

.amenity-box h3 {
  font-size: 19px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 6px;
}

.amenity-box p {
  opacity: 0.85;
  font-size: 15px;
}

.amenity-box:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: #d4af37;
}

.amenity-box:hover img {
  transform: scale(1.2);
}

/* Fade animation stagger */
.amenity-box:nth-child(1) { animation-delay: .1s; }
.amenity-box:nth-child(2) { animation-delay: .2s; }
.amenity-box:nth-child(3) { animation-delay: .3s; }
.amenity-box:nth-child(4) { animation-delay: .4s; }
.amenity-box:nth-child(5) { animation-delay: .5s; }
.amenity-box:nth-child(6) { animation-delay: .6s; }
.amenity-box:nth-child(7) { animation-delay: .7s; }
.amenity-box:nth-child(8) { animation-delay: .8s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0px); }
}


.hero {
    background: url('sustainability-hero.jpg') center/cover no-repeat;
}


.contact-card p {
  margin: 0.2rem 0;
  color: #000; /* Changed to black */
}


---Gallery-page-
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.95);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.lightbox-content{
  text-align:center;
  animation:zoomFade .4s ease;
}

@keyframes zoomFade{
  from{ transform:scale(.9); opacity:0; }
  to{ transform:scale(1); opacity:1; }
}

.lightbox img{
  max-width:95%;
  max-height:85vh;
  object-fit:contain;
}

#caption{
  margin-top:12px;
  color:#ddd;
  font-size:0.95rem;
}

.controls{
  position:absolute;
  bottom:25px;
}

.controls button{
  background:rgba(255,255,255,0.1);
  color:#fff;
  border:none;
  padding:8px 14px;
  font-size:1rem;
  cursor:pointer;
  border-radius:20px;
}

.close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:2.5rem;
  color:#fff;
  cursor:pointer;
}

.nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:3rem;
  color:#fff;
  cursor:pointer;
}

.prev{ left:30px; }
.next{ right:30px; }

@media(max-width:768px){
  .nav{ font-size:2.2rem; }
}



.offers-middle{
  padding:80px 6%;
  background:#0b0b0b;
}

.middle-block{
  margin-bottom:90px;
  text-align:center;
}

.middle-block h2{
  font-family:"Playfair Display",serif;
  font-size:2.4rem;
  color:#d4af37;
  margin-bottom:10px;
}

.subtitle{
  max-width:650px;
  margin:0 auto 45px;
  font-size:1rem;
  opacity:.85;
}

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

.middle-card{
  background:#141414;
  border-radius:18px;
  padding:40px 25px;
  border:1px solid rgba(212,175,55,.25);
  transition:.35s ease;
}

.middle-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 30px rgba(0,0,0,.6);
}

.middle-card h3{
  font-size:1.4rem;
  margin-bottom:8px;
}

.middle-card span{
  display:block;
  font-size:2rem;
  font-weight:600;
  color:#d4af37;
  margin:12px 0;
}

.middle-card p{
  font-size:.9rem;
  opacity:.8;
}

/* Highlighted Best Offer */
.middle-card.highlight{
  background:linear-gradient(135deg,#1d1d1d,#0f0f0f);
  border:1px solid #d4af37;
  box-shadow:0 0 25px rgba(212,175,55,.15);
}

/* Alternate background spacing */
.middle-block.alt{
  padding-top:30px;
}

/* Mobile */
@media(max-width:768px){
  .middle-block h2{
    font-size:2rem;
  }
}



-------
.glamps-section {
  background: #0b0b0b;
  padding: 90px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

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

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
  font-weight: 600;
  color: #d4af37;
  letter-spacing: 1px;
}

.glamps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.glamp-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glamp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
}

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

.glamp-content {
  padding: 28px;
}

.glamp-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #d4af37;
}

.glamp-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #dcdcdc;
  margin-bottom: 20px;
}

.glamp-link {
  font-size: 15px;
  font-weight: 500;
  color: #d4af37;
  text-decoration: none;
  transition: letter-spacing 0.3s ease;
}

.glamp-link:hover {
  letter-spacing: 1px;
}


.room-heading,
.room-title {
  text-align: center;
  margin-bottom: 50px;
}

.room-heading h2,
.room-title h3 {
  font-size: 38px;
  color: #d4af37;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

/* Gold underline highlight */
.room-heading h2::after,
.room-title h3::after {
  content: "";
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #bfa85f);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 10px;
}

.room-heading span,
.room-title span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: #cfcfcf;
  letter-spacing: 1px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .room-heading h2,
  .room-title h3 {
    font-size: 28px;
  }
}





----------------rooms-page--
.sticky-booking {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: #000;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(202,162,77,0.5);
  z-index: 9999;
  transition: 0.3s;
}
.sticky-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(202,162,77,0.8);
}

-------

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}


----------gallery--
.cn-gallery-section {
  background:#000;
  padding:70px 20px;
  color:#fff;
}

.room-heading {
  text-align:center;
  margin-bottom:40px;
}
.room-heading h2 {
  color:#d4af37;
  font-size:36px;
}
.room-heading span {
  opacity:.85;
}

/* Slider */
.cn-slider {
  position:relative;
  overflow:hidden;
  max-width:1200px;
  margin:auto;
}

.cn-track {
  display:flex;
  transition:transform .6s ease, height .4s ease;
}

.cn-slide {
  min-width:50%;
  padding:10px;
}

.cn-slide img {
  width:100%;
  border-radius:18px;
  cursor:pointer;
  transition:transform .4s, box-shadow .4s;
}

/* Gold glow hover */
.cn-slide img:hover {
  transform:scale(1.04);
  box-shadow:0 0 30px rgba(212,175,55,.6);
}

/* Flash on tap */
.cn-slide img.flash {
  animation:flash .3s;
}

@keyframes flash {
  0%{opacity:.5}
  100%{opacity:1}
}

/* Arrows */
.cn-arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.6);
  color:#d4af37;
  font-size:40px;
  border:none;
  cursor:pointer;
  padding:8px 16px;
}
.cn-arrow.left { left:10px; }
.cn-arrow.right { right:10px; }

/* Dots */
.cn-dots {
  text-align:center;
  margin-top:15px;
}
.cn-dots span {
  display:inline-block;
  width:10px;
  height:10px;
  background:#555;
  border-radius:50%;
  margin:0 5px;
  cursor:pointer;
}
.cn-dots span.active {
  background:#d4af37;
}

/* Lightbox */
.cn-lightbox {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.95);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.cn-lightbox img {
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}
.cn-close {
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#d4af37;
  cursor:pointer;
}

/* Mobile */
@media(max-width:768px){
  .cn-slide { min-width:100%; }
}



----------------gallery
.features {
  list-style: none;           /* remove default bullets */
  padding-left: 0;
  margin-top: 20px;
}

.features li {
  position: relative;
  padding-left: 28px;         /* space for bullet */
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

.features li::before {
  content: "•";               /* bullet icon */
  position: absolute;
  left: 0;
  top: 0;
  color: gold;                /* luxury gold bullet */
  font-size: 22px;
  line-height: 1;
}
.features li::before {
  content: "✔";
  color: gold;
  font-size: 14px;
}
/* ===== FEATURES LIST ===== */
.features {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

/* List item */
.features li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
}

/* Stagger animation */
.features li:nth-child(1) { animation-delay: 0.1s; }
.features li:nth-child(2) { animation-delay: 0.2s; }
.features li:nth-child(3) { animation-delay: 0.3s; }
.features li:nth-child(4) { animation-delay: 0.4s; }
.features li:nth-child(5) { animation-delay: 0.5s; }
.features li:nth-child(6) { animation-delay: 0.6s; }
.features li:nth-child(7) { animation-delay: 0.7s; }

/* Bullet icon */
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #ffd700, #b8860b);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
  animation: pulse 1.8s infinite ease-in-out;
}

/* Fade + slide animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bullet glow pulse */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .features li {
    font-size: 15px;
    padding-left: 30px;
    margin-bottom: 18px;
  }

  .features li::before {
    top: 8px;
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 480px) {
  .features li {
    font-size: 14.5px;
    line-height: 1.8;
  }
}
.features li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;

  display: flex;
  align-items: flex-start;   /* KEY: text aligns with bullet */
}

/* Bullet icon */
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;               /* aligns bullet with first text line */
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #ffd700, #b8860b);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
  animation: pulse 1.8s infinite ease-in-out;
}
@media (max-width: 768px) {
  .features li {
    padding-left: 30px;
    font-size: 15px;
  }

  .features li::before {
    top: 0.5em;   /* keeps text & bullet perfectly aligned */
  }
}
.features li {
  padding-left: 24px;   /* was 34px → reduced */
}

/* Bullet icon */
.features li::before {
  width: 8px;           /* slightly smaller bullet */
  height: 8px;
}
@media (max-width: 768px) {
  .features li {
    padding-left: 22px;
  }

  .features li::before {
    width: 7px;
    height: 7px;
  }
}
.lux-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.lux-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* Active slide */
.lux-slider img.active {
  opacity: 1;
  animation: goldFlash 4s infinite;
}

/* Luxury soft gold flash */
@keyframes goldFlash {
  0% {
    box-shadow: 0 0 0 rgba(202,162,77,0);
  }
  50% {
    box-shadow: 0 0 25px rgba(202,162,77,0.45);
  }
  100% {
    box-shadow: 0 0 0 rgba(202,162,77,0);
  }
}
.about-room {
  background: #0b0b0b;
  padding: 60px 6%;
  color: #fff;
}

.about-room h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 18px;
}

.about-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* Feature Grid */
.room-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

/* Feature Card */
.feature {
  background: #111;
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 0 12px rgba(202,162,77,0.15);
}

.feature span {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #caa24d;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.feature p {
  font-size: 15px;
  color: #f5f5f5;
}

/* Full width card */
.feature.full {
  grid-column: 1 / -1;
}

/* Mobile Optimisation */
@media (max-width: 480px) {
  .about-room h2 {
    font-size: 26px;
  }

  .about-desc {
    font-size: 14px;
  }

  .feature {
    padding: 18px 14px;
  }

  .feature p {
    font-size: 14px;
  }
}
/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

  section {
    padding: 50px 6%;
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 120px 6% 80px;
    background-position: center;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .btn {
    padding: 12px 26px;
    font-size: 14px;
  }

  /* ROOM GRID */
  .room-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* FEATURES */
  .features li {
    font-size: 14px;
    line-height: 1.6;
    padding-left: 24px;
  }

  .features li:before {
    font-size: 14px;
    top: 2px;
  }

  /* SLIDER */
  .lux-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
  }

  .lux-slider img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
  }
}

-----------------

.room-section {
  background: #0b0b0b;
  padding: 70px 6%;
  color: #fff;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Text */
.room-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.room-content p {
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 24px;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.features li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #caa24d;
}

/* Slider */
.lux-slider {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
}

.lux-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.lux-slider img.active {
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .room-grid {
    grid-template-columns: 1fr;
  }

  .lux-slider {
    height: 260px;
  }
}

----------------------
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #caa24d; /* Gold color */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color: #a67c2d;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


-----------------
<style>
:root{
  --gold:#d4af37;
  --black:#0b0b0b;
  --field-bg:#1f1f1f;
}

.cab-tab{
  max-width:600px;
  margin:auto;
  background:var(--black);
  border-radius:18px;
  padding:25px 30px;
  box-shadow:0 12px 25px rgba(212,175,55,0.5),0 6px 15px rgba(0,0,0,0.6);
}

.tab-header{
  text-align:center;
  position:relative;
  margin-bottom:25px;
}

.tab-header h2{
  color:var(--gold);
  font-size:28px;
  display:inline-block;
  position:relative;
  padding:0 20px;
}

.tab-header h2::before,
.tab-header h2::after{
  content:"";
  position:absolute;
  top:50%;
  width:60px;
  height:3px;
  background:var(--gold);
  transform:translateY(-50%);
}

.tab-header h2::before{
  left:-70px;
}

.tab-header h2::after{
  right:-70px;
}

.tab-body{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.tab-item{
  display:flex;
  flex-direction:column;
}

.tab-item label{
  font-weight:600;
  color:#ccc;
  margin-bottom:6px;
  font-size:14px;
}

.tab-item input,
.tab-item select{
  padding:14px 12px;
  border-radius:10px;
  border:1px solid rgba(212,175,55,0.4);
  background:var(--field-bg);
  color:#fff;
  font-size:15px;
  outline:none;
  transition:0.3s;
}

.tab-item input:focus,
.tab-item select:focus{
  border-color:var(--gold);
  box-shadow:0 0 10px rgba(212,175,55,0.4);
}

.whatsapp{
  text-align:center;
  margin-top:30px;
}

.whatsapp a{
  background:linear-gradient(135deg,#d4af37,#b8962e);
  color:#000;
  padding:14px 40px;
  font-size:18px;
  font-weight:600;
  border-radius:50px;
  text-decoration:none;
  display:inline-block;
  transition:0.3s;
}

.whatsapp a:hover{
  opacity:0.9;
}

@media(max-width:600px){
  .cab-tab{
    padding:20px;
  }
}
</style>

----------------------

/* ================= HEADER ================= */
.cn-header{
 position:sticky;
 top:0;
 z-index:1000;
 background:#0a0a0a;
 border-bottom:1px solid rgba(201,164,74,.35);
}

.cn-container{
 max-width:1300px;
 margin:auto;
 padding:14px 22px;
 display:flex;
 align-items:center;
 justify-content:space-between;
}

/* LOGO */
.cn-logo{
 font-size:16px;
 font-weight:700;
 letter-spacing:1px;
 color:var(--gold);
}

/* NAV */
.cn-nav{
 display:flex;
 align-items:center;
 gap:26px;
}

.cn-nav a{
 font-weight:500;
 position:relative;
}

/* MENU HOVER UNDERLINE */
.cn-nav a:not(.btn)::after{
 content:"";
 position:absolute;
 bottom:-6px;
 left:0;
 width:0;
 height:2px;
 background:linear-gradient(135deg,var(--gold),var(--gold-soft));
 transition:.3s;
}

.cn-nav a:not(.btn):hover::after{
 width:100%;
}

/* BOOK BUTTON ALIGN */
.cn-book-btn{
 margin-left:10px;
}

/* MOBILE */
.cn-menu-toggle{
 display:none;
 font-size:16px;
 cursor:pointer;
 color:var(--gold);
}

@media(max-width:900px){
 .cn-nav{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#0a0a0a;
  flex-direction:column;
  padding:20px;
  display:none;
  border-bottom:1px solid rgba(201,164,74,.3);
 }
 .cn-nav a{
  padding:12px 0;
 }
 .cn-menu-toggle{
  display:block;
 }
 .cn-nav.active{
  display:flex;
 }
}

-----------
/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 1000;
}

/* Logo */
header .logo img {
  height: 44px;
  display: block;
}

/* ================= DESKTOP NAV ================= */
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Menu Item */
.desktop-nav .nav-item {
  position: relative;
}

/* Menu Link */
.desktop-nav .nav-item > a {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  padding: 10px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

/* Hover */
.desktop-nav .nav-item > a:hover {
  color: #d4af37;
}

/* ================= DROPDOWN ================= */
.desktop-nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Dropdown Item */
.desktop-nav .dropdown-menu li {
  list-style: none;
}

.desktop-nav .dropdown-menu li a {
  font-size: 14px;
  padding: 12px 22px;
  color: #ffffff;
  display: block;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

/* Dropdown Hover */
.desktop-nav .dropdown-menu li a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
}

/* Show Dropdown */
.desktop-nav .nav-item.dropdown:hover .dropdown-menu {
  display: flex;
}

/* ================= BOOK NOW BUTTON ================= */
.desktop-nav .btn {
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af37, #000000);
  color: #000;
  font-weight: 600;
  margin-left: 10px;
}

/* ================= MOBILE ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
}

@media (max-width: 900px) {
  header {
    padding: 0 25px;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
-----------
.header-btn .book-btn{
  background: linear-gradient(135deg,#c9a44a,#e6c97a);
  color: #000000 !important;   /* ✔ FONT COLOR BLACK */
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.header-btn .book-btn:hover{
  color: #000000 !important;   /* ✔ stays black on hover */
  background: #e6c97a;
}
---------------
/* ================================
   FLOATING CONTACT – NO EFFECTS
   ================================ */

.floating-contact{
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
}

.floating-contact .contact-btn{
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* REMOVE ALL EFFECTS */
  transition: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.floating-contact .contact-btn:hover,
.floating-contact .contact-btn:active{
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.floating-contact .contact-btn img{
  width: 22px;
  height: 22px;
}
------------
.section{
  padding: 60px 20px;
}

.promo{
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.promo-code{
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin-top: 8px;
}

.promo-text{
  margin-top: 12px;
}

.btn-wrap{
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.btn{
  display: inline-block;
  padding: 12px 28px;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.note{
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.8;
}

/* ---------- BANNER Safty&support---------- */
.banner{
  height:60vh;
  background:url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}

.banner::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.banner-content{
  position:relative;
  width:100%;
  text-align:center;
}

.banner-content h1{
  font-size:3rem;
  margin-bottom:10px;
  color:#ffffff; /* HEADER TITLE WHITE */
}

.banner-content span{
  color:#ffffff;
  font-size:1.1rem;
}

----------gallery------
/* LIGHTBOX BACKDROP */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

/* CONTENT */
.lightbox-content {
  text-align: center;
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: all 0.45s cubic-bezier(.4,0,.2,1);
}

.lightbox.show .lightbox-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 75vh;
  border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}

/* CAPTION */
#caption {
  margin-top: 16px;
  color: #eaeaea;
  font-size: 15px;
  letter-spacing: 0.4px;
  opacity: 0.85;
}

/* CLOSE */
.close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* NAV ARROWS */
.nav {
  position: absolute;
  top: 50%;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  opacity: 0.6;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.prev { left: 24px; }
.next { right: 24px; }

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  .nav {
    font-size: 30px;
  }
  .close {
    font-size: 30px;
    top: 18px;
    right: 20px;
  }
}

-------------footer-address enter space
.footer-contact p {
  margin-bottom: 12px; /* adjust space */
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and text */
}
.footer-contact p {
  margin-bottom: 22px;
}


----cloudsnight-window-box--
/* PARALLAX GLASS CONTENT */
.parallax .glass-box {
  text-align: center;
}

/* HEADING */
.parallax .glass-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;      /* Desktop smaller */
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.25;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.parallax .glass-box p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 18px;
}

/* TABLET */
@media (max-width: 991px) {
  .parallax .glass-box h1 {
    font-size: 30px;
  }

  .parallax .glass-box p {
    font-size: 14px;
  }
}

/* MOBILE (EXTRA SMALL) */
@media (max-width: 576px) {
  .parallax .glass-box h1 {
    font-size: 22px;      /* EVEN SMALLER */
    letter-spacing: 1px;
  }

  .parallax .glass-box p {
    font-size: 13px;
    padding: 0 12px;
  }

  .parallax .glow-btn {
    font-size: 12px;
    padding: 9px 20px;
  }
}
@media (max-width: 576px) {
  [data-aos] {
    transition-duration: 600ms !important;
    transform: none !important;
  }
}


-----------------
insta-page---
/* Section container */
.instagram-showcase {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #141414, #080808);
  text-align: center;
  color: #fff;
}

/* Title */
.instagram-showcase h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Subtitle */
.instagram-showcase p {
  font-size: 14px;
  letter-spacing: 0.6px;
  opacity: 0.75;
  margin-bottom: 45px;
}

/* Mobile fine-tune */
@media (max-width: 768px) {
  .instagram-showcase h2 {
    font-size: 26px;
  }

  .instagram-showcase p {
    font-size: 13px;
  }
}

.insta-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 45px auto 0;
  padding: 14px 38px;
  border-radius: 30px;
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.35s ease;
}

/* Hover luxury effect */
.insta-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(221,42,123,0.35);
}

.instagram-showcase::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff55, transparent);
  margin: 22px auto 0;
}
.instagram-showcase {
  font-family: -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.instagram-showcase h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.5px;

  background: linear-gradient(
    45deg,
    #f58529,  /* orange */
    #dd2a7b,  /* pink */
    #8134af,  /* purple */
    #515bd4   /* blue */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.instagram-showcase p {
  font-size: 14px;
  text-align: center;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.4px;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .instagram-showcase h2 {
    font-size: 26px;
  }

  .instagram-showcase p {
    font-size: 13px;
  }
}

.instagram-showcase {
  padding: 80px 20px;
  background: #0b0b0b;
  color: #fff;
  text-align: center;
}

.instagram-showcase h2 {
  font-size: 32px;
  margin-bottom: 6px;
}

.instagram-showcase p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 40px;
}

/* Reels */
.reels-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.reel {
  position: relative;
  min-width: 180px;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.reel span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  background: rgba(0,0,0,0.25);
}

/* Image Grid */
.insta-image-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  max-width: 1100px;
  margin: auto;
}

.insta-image-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.4s;
}

.insta-image-grid img:hover {
  transform: scale(1.05);
}

/* CTA */
.insta-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  border-radius: 30px;
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .reel {
    min-width: 150px;
    height: 260px;
  }

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

  .insta-image-grid img {
    height: 180px;
  }
}

/* Instagram post card */
.insta-post {
  position: relative;
  border-radius: 18px;
  padding: 3px; /* outline thickness */
  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}

/* Inner content */
.insta-post-inner {
  border-radius: 15px;
  overflow: hidden;
  background: #000;
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Glow */
.insta-post::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
  filter: blur(18px);
  opacity: 0.55;
  z-index: -1;
}
/* REELS ROW */
.reels-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reel Box */
.reel {
  position: relative;
  width: 180px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(135deg, #ff2f92, #a335ee, #ff9f1a) border-box;
  box-shadow:
    0 0 15px rgba(255, 47, 146, 0.35),
    0 0 30px rgba(163, 53, 238, 0.25);
  transition: all 0.4s ease;
}

/* Reel Hover Glow Boost */
.reel:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 0 25px rgba(255, 47, 146, 0.6),
    0 0 50px rgba(255, 159, 26, 0.4);
}

/* Reel Image */
.reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play Icon */
.reel span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: white;
  background: rgba(0,0,0,0.25);
  text-shadow: 0 0 15px rgba(255,255,255,0.8);
  transition: background 0.3s ease;
}

.reel:hover span {
  background: rgba(0,0,0,0.1);
}
/* IMAGE GRID */
.insta-image-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Post Box */
.insta-image-grid a {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(135deg, #ff2f92, #a335ee, #4c5cff) border-box;
  box-shadow:
    0 0 12px rgba(255, 47, 146, 0.3);
  transition: all 0.35s ease;
}

/* Hover Effect */
.insta-image-grid a:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 22px rgba(255, 47, 146, 0.55),
    0 0 40px rgba(76, 92, 255, 0.35);
}

/* Image */
.insta-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insta-cta {
  margin: 40px auto 0;
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff2f92, #a335ee, #ff9f1a);
  box-shadow:
    0 0 18px rgba(255, 47, 146, 0.6),
    0 0 35px rgba(255, 159, 26, 0.45);
  transition: all 0.35s ease;
}

.insta-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 30px rgba(255, 47, 146, 0.9),
    0 0 60px rgba(255, 159, 26, 0.6);
}
@media (max-width: 768px) {
  .reel {
    width: 150px;
    height: 250px;
  }

  .reel span {
    font-size: 42px;
  }
}
----
@keyframes instaGlowPulse {
  0% {
    box-shadow:
      0 0 12px rgba(255, 47, 146, 0.35),
      0 0 25px rgba(163, 53, 238, 0.25);
  }
  50% {
    box-shadow:
      0 0 22px rgba(255, 47, 146, 0.65),
      0 0 45px rgba(255, 159, 26, 0.45);
  }
  100% {
    box-shadow:
      0 0 12px rgba(255, 47, 146, 0.35),
      0 0 25px rgba(163, 53, 238, 0.25);
  }
}
.reel {
  animation: instaGlowPulse 3.5s ease-in-out infinite;
}

/* Pause pulse + stronger glow on hover */
.reel:hover {
  animation-play-state: paused;
  box-shadow:
    0 0 30px rgba(255, 47, 146, 0.9),
    0 0 60px rgba(255, 159, 26, 0.6);
}
.insta-image-grid a {
  animation: instaGlowPulse 4.5s ease-in-out infinite;
}

/* Hover overrides animation */
.insta-image-grid a:hover {
  animation-play-state: paused;
}
.reel::before,
.insta-image-grid a::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.25),
    transparent 70%
  );
  opacity: 0;
  animation: glowSweep 6s linear infinite;
}

@keyframes glowSweep {
  0% { transform: translateX(-100%); opacity: 0; }
  30% { opacity: 0.4; }
  60% { opacity: 0.2; }
  100% { transform: translateX(100%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .reel,
  .insta-image-grid a {
    animation: none;
  }
}


-------mobile-full-view-hero
/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* DARK OVERLAY */
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
@media (max-width: 768px) {
  .content {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 30px !important;
    line-height: 1.2;
    text-align: center !important;
    margin: 0 auto 12px !important;
    padding: 0 14px;
    box-sizing: border-box;
  }
}
.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }
}

----------------------
.hero-title,
.subtext {
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.95),   /* crisp edge */
    0 6px 12px rgba(0, 0, 0, 0.75),  /* depth */
    0 12px 22px rgba(0, 0, 0, 0.6);  /* soft spread */
}
@media (max-width: 768px) {
  .hero-title,
  .subtext {
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.95),
      0 5px 14px rgba(0, 0, 0, 0.85);
  }
}
.hero-title,
.subtext {
  -webkit-text-stroke: 0.3px rgba(0,0,0,0.4);
}

/* Base hidden state */
.zoom-title,
.zoom-subtitle,
.zoom-button {
  opacity: 0;
  transform: scale(1.2);
  animation: zoomIn 1s ease-out forwards;
}

/* Stagger timing */
.zoom-title {
  animation-delay: 0.3s;
}

/* Initial state */
.zoom-subtitle,
.zoom-button {
  opacity: 0;
  transform: scale(0.85);
  animation: zoomIn 0.9s ease-out forwards;
}

/* Delays */
.zoom-subtitle {
  animation-delay: 0.6s;
}

.zoom-button {
  animation-delay: 1.1s;
}

/* Zoom IN keyframes */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Keyframes */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }

  .subtext {
    font-size: 14px;
  }

  .book-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

----------------mobile-menu-list-size-small---
/* Mobile Menu Container */
.mobile-menu {
  padding: 16px 0;
}

/* Menu list */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Menu items */
.mobile-menu ul li {
  margin: 10px 0;   /* reduce vertical gap */
}

/* Menu links */
.mobile-menu ul li a {
  font-size: 14px;        /* smaller text */
  padding: 8px 16px;      /* smaller touch area */
  display: inline-block;
  letter-spacing: 0.3px;
}

/* Book Now button in menu */
.mobile-menu ul li a.btn {
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 20px;
  margin-top: 6px;
}

/* Extra small screens */
@media (max-width: 360px) {
  .mobile-menu ul li a {
    font-size: 13px;
    padding: 7px 14px;
  }

  .mobile-menu ul li a.btn {
    font-size: 12px;
    padding: 7px 16px;
  }
}

-------
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  padding: 14px 12px;
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 6px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;              /* small text */
  font-weight: 500;
  color: #eee;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
}

.mobile-menu a i {
  font-size: 14px;              /* compact icon */
  color: #caa76a;               /* luxury gold */
  min-width: 22px;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.06);
}

/* Book Now Highlight */
.mobile-menu li.book a {
  background: linear-gradient(135deg, #caa76a, #9f7e4a);
  color: #111;
  font-weight: 600;
}

.mobile-menu li.book a i {
  color: #111;
}
---------------social-link-menu-list-bottom---
/* Container */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #111;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 999;
}

/* Menu Items */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  margin: 10px 0;
}

.menu-list a {
  font-size: 16px;
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 8px 0;
}

.menu-list a.btn {
  background: #caa76a;
  color: #111;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  font-weight: 600;
  margin-top: 10px;
}

/* Bottom Social Icons */
.social-bottom {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-bottom: 12px;
}

.social-bottom a {
  color: #eee;
  font-size: 18px;
  transition: 0.3s;
}

.social-bottom a:hover {
  color: #caa76a;
  transform: scale(1.1);
}

/* Small tweaks on super-small screens */
@media (max-width: 360px) {
  .menu-list a {
    font-size: 14px;
  }
  .social-bottom a {
    font-size: 16px;
  }
}

----------room-type-coda-bookingpage-
.form-row {
  display: flex;
  gap: 12px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

/* Mobile fix */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

-------cab-banner-change--
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* 🔁 CHANGE YOUR BANNER IMAGE HERE */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://cloudsnight.com/background-image/clouds-night-bg-cabs.jpg") center center / cover no-repeat;
  z-index: 1;
  transform: scale(1.05);
}

/* Dark overlay for text visibility */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.flash-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
}

.subtext {
  margin: 15px 0 30px;
  font-size: 18px;
  opacity: 0.9;
}

.book-btn {
  padding: 14px 36px;
  background: #c8a34a;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #e0bb5a;
}

/* Mobile line break */
.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }
}

-----------------dinning--
/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Dining Grid */
.dining-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Dining Card Box */
.dining-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dining-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Image Fix */
.dining-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content Area */
.dining-card .content {
  padding: 20px;
  text-align: center;
}

/* Title */
.dining-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Description */
.dining-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.dining-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Image */
.dining-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content area */
.dining-card .content {
  position: relative;        /* IMPORTANT */
  padding: 20px;
  background: #fff;
  text-align: center;
}

/* Title */
.dining-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

/* Description */
.dining-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

----------rooms-page--
/* GALLERY */
.gallery{
  margin:60px 0;          /* pushes it down naturally */
  position:relative;     /* required for dots */
  overflow:hidden;
  border-radius:22px;
  border:1px solid #222;
  background:#000;
}

.room-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:16px;
}

.luxury-line-title{
  font-size:14px;
  font-weight:500;
  color:#caa24d;
  letter-spacing:2px;
  text-transform:uppercase;
  display:inline-block;
  padding-bottom:6px;
  border-bottom:1px solid rgba(202,162,77,0.5);
}

.booking-card{
  position:relative;
  background:#0e0e0e;
  border-radius:18px;
  padding:22px;
  color:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,.6);
}

/* OFFER BADGE */
.offer-badge{
  position:absolute;
  top:18px;
  right:18px;
  background:linear-gradient(135deg,#d4af37,#b8962e);
  color:#000;
  padding:10px 14px;
  border-radius:12px;
  text-align:center;
  font-size:12px;
  font-weight:600;
}
.offer-image{
  height:160px;
  border-radius:14px;
  background:url("room-img/offer-post-glass.jpg") center / cover no-repeat;
  margin-bottom:18px;
}

.offer-badge strong{
  display:block;
  font-size:16px;
}

/* OFFER IMAGE PLACEHOLDER */
.offer-image{
  height:160px;
  border-radius:14px;
  background:
    repeating-linear-gradient(
      45deg,
      #1a1a1a,
      #1a1a1a 10px,
      #111 10px,
      #111 20px
    );
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
  font-size:14px;
  margin-bottom:18px;
  text-align:center;
}

/* PRICE */
.price{
  font-size:26px;
  font-weight:600;
  margin-bottom:18px;
}
.price del{
  display:block;
  font-size:14px;
  color:#888;
}
.price span{
  color:#d4af37;
}
.price small{
  font-size:14px;
  color:#aaa;
}

/* FORM */
.booking-card label{
  display:block;
  margin-top:12px;
  font-size:13px;
  color:#bbb;
}
.booking-card input,
.booking-card select{
  width:100%;
  padding:12px;
  margin-top:6px;
  border-radius:10px;
  border:none;
  background:#1a1a1a;
  color:#fff;
}

/* BUTTON */
.book-btn{
  display:block;
  margin-top:20px;
  padding:14px;
  text-align:center;
  background:linear-gradient(135deg,#d4af37,#b8962e);
  color:#000;
  font-weight:600;
  border-radius:12px;
  text-decoration:none;
  transition:.3s;
}
.book-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(212,175,55,.4);
}
/* OFFER BADGE BASE */
.offer-badge{
  position:absolute;
  top:18px;
  right:18px;
  background:linear-gradient(135deg,#d4af37,#b8962e);
  color:#000;
  padding:10px 14px;
  border-radius:12px;
  text-align:center;
  font-size:12px;
  font-weight:600;
  overflow:hidden;
}

/* TEXT */
.offer-badge strong{
  display:block;
  font-size:16px;
}

/* PULSE ANIMATION */
.offer-badge.animated{
  animation:pulseGlow 2s infinite;
}

/* SHINE EFFECT */
.offer-badge::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.6),
    transparent
  );
  animation:shine 3s infinite;
}

/* KEYFRAMES */
@keyframes pulseGlow{
  0%{
    box-shadow:0 0 0 rgba(212,175,55,.6);
    transform:scale(1);
  }
  50%{
    box-shadow:0 0 25px rgba(212,175,55,.9);
    transform:scale(1.05);
  }
  100%{
    box-shadow:0 0 0 rgba(212,175,55,.6);
    transform:scale(1);
  }
}

@keyframes shine{
  0%{ left:-100%; }
  60%{ left:100%; }
  100%{ left:100%; }
}

:root{
  --gold:#d4af37;
  --dark:#0b0b0b;
}

/* Input field */
input[type="date"]{
  width:100%;
  padding:14px;
  background:#111;
  color:#fff;
  border:1px solid var(--gold);
  border-radius:8px;
  font-size:15px;
  outline:none;
  cursor:pointer;
}

/* Focus glow */
input[type="date"]:focus{
  box-shadow:0 0 0 2px rgba(212,175,55,0.35);
}

/* Calendar icon (Chrome / Edge) */
input[type="date"]::-webkit-calendar-picker-indicator{
  filter: invert(78%) sepia(28%) saturate(450%) hue-rotate(8deg);
  cursor:pointer;
}

/* Calendar popup (supported browsers) */
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-year-field{
  color:#fff;
}

/* Dark popup background */
::-webkit-calendar-picker-indicator:hover{
  opacity:0.85;
}
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile: 2 columns */
  gap: 16px;
  margin-top: 30px;
}

.amenity {
  background: #111;
  border: 1px solid rgba(212,175,55,0.35); /* luxury gold */
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.amenity span {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.amenity p {
  margin: 0;
  font-size: 14px;
  color: #eee;
}

/* Hover (desktop luxury feel) */
.amenity:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 10px 25px rgba(212,175,55,0.15);
}

/* 💻 Desktop: 4 columns */
@media (min-width: 768px) {
  .amenities {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .amenity p {
    font-size: 15px;
  }
}
/* MOBILE: if odd item, make last one full width */
@media (max-width: 767px) {
  .amenities .amenity:last-child:nth-child(odd) {
    grid-column: span 2;
    justify-self: center;
    max-width: 300px;
  }
}

/* DESKTOP: if odd item, center it across 2 columns */
@media (min-width: 768px) {
  .amenities .amenity:last-child:nth-child(odd) {
    grid-column: span 2;
    justify-self: center;
  }
}

------room-page-book-box-note---
.booking-card {
  background: #0f0f0f;
  color: #fff;
  padding: 25px 20px 50px; /* 👈 bottom space */
  border-radius: 16px;
  max-width: 450px;
  margin: 40px auto;
}

/* WhatsApp button spacing */
.whatsapp-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 22px; /* 👈 space below button */
}

/* Notes spacing */
.booking-note {
  margin-top: 10px;
}

.booking-note p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 14px; /* 👈 space between paragraphs */
}

.booking-note p:last-child {
  margin-bottom: 0; /* clean bottom */
}
.gold-text {
  color: #d4af37;        /* luxury gold */
  font-weight: 700;
}

/* Optional premium enhancement */
.booking-note p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}
---------mobile-view-roompage
@media(max-width:480px){
  .booking-wrapper{
    margin:12px;
    padding:12px;
  }

  .room-title{
    font-size:20px;
  }

  .new-price{
    font-size:24px;
  }

  label{
    font-size:12px;
  }
}
.booking-note{
  margin-top:18px;
  padding:14px;
  border-radius:12px;
  background:#0f0f0f;
  border:1px solid #222;
  font-size:13px;
  line-height:1.6;
  color:#ccc;
}

.booking-note p{
  margin:0 0 10px;
}

.booking-note p:last-child{
  margin-bottom:0;
}

.gold-text{
  color:var(--gold);
  font-weight:600;
}

-------location-page-qr
.qr-mini-box{
  max-width:320px;
  margin:40px auto;
  padding:20px 16px 18px;
  background:linear-gradient(180deg,#0c0c0c,#151515);
  border-radius:18px;
  border:1px solid #d4af37;
  text-align:center;
  box-shadow:0 14px 35px rgba(0,0,0,0.55);
}

.qr-title{
  display:inline-block;
  padding:6px 16px;
  margin-bottom:14px;
  font-size:15px;
  font-weight:600;
  letter-spacing:0.6px;
  color:#111;
  background:linear-gradient(135deg,#f5e7a1,#d4af37,#b58a2a);
  border-radius:30px;
  box-shadow:0 4px 12px rgba(212,175,55,0.45);
}

.qr-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  justify-items:center;
}

.qr-item img{
  width:130px;
  height:130px;
  background:#fff;
  padding:8px;
  border-radius:14px;
}

.qr-item span{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:#e0e0e0;
}

.qr-note{
  margin-top:12px;
  font-size:12px;
  color:#bfbfbf;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 480px){

  .qr-grid{
    gap:10px;
  }

  .qr-item img{
    width:110px;
    height:110px;
    padding:6px;
  }

  .qr-item span{
    font-size:12px;
    line-height:1.3;
  }

  .gold-box{
    font-size:10px;
    padding:4px 10px;
    border-radius:6px;
    margin-top:8px;
  }

}
----------offerpage
