/* ---------- GENERAL STYLES ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* ---------- Home/Header Section ---------- */
.header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.header__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  z-index: 1;
}

/* Subtle animated light overlay */
.header__overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  animation: moveOverlay 20s linear infinite;
  z-index: 2;
}

@keyframes moveOverlay {
  0% { transform: rotate(0deg) translateX(0) translateY(0); }
  50% { transform: rotate(10deg) translateX(30px) translateY(20px); }
  100% { transform: rotate(0deg) translateX(0) translateY(0); }
}

.header__container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
}

.header__container h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.header__container .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: #c49b5f; /* luxurious gold */
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header__container .btn:hover {
  background: #a67c3d;
  transform: translateY(-3px);
}


body {
  background-color: #fff8f0;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.section__container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 4rem 0;
}

.section__subheader {
  color: #bfa06f;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.section__header {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.section__description {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  background-color: #bfa06f;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn:hover,
.btn-gold:hover {
  background-color: #9c7d52;
}

.btn-gold {
  background-color: #bfa06f;
}


/* ---------- NAVBAR ---------- */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: top 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif;
  height: 60px; /* smaller height */
  display: flex;
  align-items: center;
}

/* ---------- NAV BAR CONTAINER ---------- */
.nav__bar {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- LOGO ---------- */
.nav__logo div {
  font-size: 1.5rem;
  font-weight: 700;
  color: #bfa06f;
  line-height: 1;
}

.nav__logo span {
  font-size: 0.85rem;
  line-height: 1.2;
  display: block;
  font-weight: 500;
  color: #333;
}

/* ---------- LINKS ---------- */
.nav__links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}

.nav__links li a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

/* Underline animation */
.nav__links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #bfa06f;
  transition: width 0.3s ease;
}

.nav__links li a:hover::after {
  width: 100%;
}

.nav__links li a:hover {
  color: #bfa06f;
}

/* ---------- MOBILE MENU BUTTON ---------- */
.nav__menu__btn {
  display: none; /* show only on mobile */
  cursor: pointer;
  font-size: 1.6rem;
  color: #333;
  transition: color 0.3s ease;
}

.nav__menu__btn:hover {
  color: #bfa06f;
}
/* ===============================
   LUXURY NAVBAR UPGRADE
=============================== */

.lux-nav {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(191,160,111,0.2);
  transition: all 0.4s ease;
}

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* CENTER NAV LINKS */
.nav__links {
  justify-content: center;
  flex: 1;
}

/* GOLD HOVER */
.nav__links li a {
  color: #fff;
  font-weight: 500;
}

.nav__links li a:hover {
  color: #c9a45c;
}

/* CTA BUTTON */
.nav-cta {
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #c9a45c, #b08b45);
  box-shadow: 0 8px 20px rgba(201,164,92,0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ---------- RESPONSIVE ---------- */



/* ---------- HEADER ---------- */
.header {
  background: url('Images/bar.webp') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding-bottom: 2rem;
}

.about__container {
  padding-bottom: 2rem;
}

.about__grid {
  margin-bottom: 2rem;
}

.about__content {
  text-align: center;
  padding-bottom: 0;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.about__card {
  background-color: #fff8f0;
  padding: 2rem;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.about__card:hover {
  transform: translateY(-5px);
}

.about__card span {
  display: inline-block;
  font-size: 2rem;
  color: #bfa06f;
  margin-bottom: 0.8rem;
}

.about__content {
  text-align: center;
}
.about__content .section__description {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- ROOMS ---------- */
.room__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.room__card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.room__card:hover {
  transform: scale(1.03);
}

.room__card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room__card__details {
  background-color: #fff8f0;
  padding: 1rem 1.5rem;
}

.room__card__details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.room__card__details p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.room__card__details h3 {
  font-size: 1.2rem;
  color: #bfa06f;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
  position: relative;
}

.modal-content .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}

.modal-gallery {
  text-align: center;
}

.modal-gallery .main-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.thumbnail-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}

.thumbnail-row img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s;
}

.thumbnail-row img:hover {
  transform: scale(1.1);
}

.room-amenities {
  margin: 1rem 0;
  list-style: disc;
  padding-left: 1.5rem;
}

.btn.book-now {
  background-color: #0077cc;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
}


/* ---------- INTRO VIDEO ---------- */
.intro__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.intro__content {
  flex: 1 1 450px;
}

.intro__video {
  position: relative;
  flex: 1 1 450px;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
}

.intro__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.play__button {
  font-size: 3rem;
  color: #fff;
}

/* ---------- RESTAURANT SECTION ---------- */
.restaurant {
  padding: 6rem 2rem;
  background: #fafafa;
}
/* Restaurant Gallery Items */
.restaurant__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 300px; /* same height for all items */
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures no stretching */
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 15px;
  text-align: center;
  transition: background 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
  background: rgba(0, 0, 0, 0.7);
}

/* =========================
   GALLERY SECTION
========================= */
.gallery__container {
  padding: 5rem 1rem;
  text-align: center;
  background-color: #fafafa;
}

.gallery__container .section__subheader {
  color: #b68d40;
  letter-spacing: 2px;
  font-weight: 500;
}

.gallery__container .section__header {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #222;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.gallery__grid img {
  width: 100%;
  height: 250px; /* uniform height */
  object-fit: cover;
  border-radius: 16px; /* rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

/* Hover Effect: zoom with subtle overlay */
.gallery__grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Optional Overlay (adds a dark tint + icon) */
.gallery__grid img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  border-radius: 16px;
  transition: background 0.4s ease;
}

.gallery__grid img:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* Optional lightbox cursor */
.gallery__grid img:hover {
  cursor: zoom-in;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .gallery__grid {
    gap: 1rem;
  }
  .gallery__grid img {
    height: 200px;
  }
}

/* =========================
   RESTAURANT SECTION
========================= */

/* ---------- Intro ---------- */
.restaurant__intro {
  text-align: center;
  margin-bottom: 4rem;
}

.restaurant__intro .section__subheader {
  color: #bfa06b;
  letter-spacing: 2px;
  font-weight: 600;
}

.restaurant__intro .section__header {
  font-size: 2.8rem;
  margin: 1rem 0;
  color: #333;
}

.restaurant__intro .section__description {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Signature Dishes & Interior ---------- */
.restaurant__signature,
.restaurant__interior {
  margin: 4rem 0;
  text-align: center;
}

.restaurant__signature h3,
.restaurant__interior h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 700;
}

/* ---------- Signature Dishes Grid ---------- */
.signature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ---------- Restaurant Interiors Grid ---------- */
.interior__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* slightly smaller */
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

/* ---------- Gallery Items (Shared Styles) ---------- */
.gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  max-height: 320px; /* limit height for interiors */
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 16px;
}

/* Overlay */
.gallery__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s ease;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Hover Effects */
.gallery__item:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 2;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item:hover .gallery__overlay {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Banner ---------- */
.restaurant__banner {
  margin-top: 5rem;
  background: linear-gradient(135deg, #bfa06b, #fff5e6);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.restaurant__banner .banner__content h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.restaurant__banner .banner__content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.restaurant__banner .btn-gold {
  background: #bfa06b;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease;
}

.restaurant__banner .btn-gold:hover {
  background: #a6844f;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
  .restaurant__intro .section__header {
    font-size: 2rem;
  }

  .gallery__item img {
    max-height: 250px;
  }

  .restaurant__banner {
    padding: 2.5rem 1.5rem;
  }
}



/* ---------- FOOTER ---------- */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 4rem 0 2rem 0;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bfa06f;
}

.footer__contact p,
.footer__form input,
.footer__form textarea,
.footer__socials a {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.footer__form input,
.footer__form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: none;
  margin-bottom: 1rem;
}

.footer__form button {
  background-color: #bfa06f;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer__form button:hover {
  background-color: #9c7d52;
}

.footer__socials a {
  font-size: 1.5rem;
  margin-right: 0.8rem;
  color: #fff;
  transition: 0.3s ease;
}

.footer__socials a:hover {
  color: #bfa06f;
}

.footer__bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #888;
}

/* ---------- MAP SECTION ---------- */
.map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 5%;
  background-color: #fdf8f3;
}

.map-info {
  flex: 1 1 400px;
}

.map-container {
  flex: 2 1 500px;
  min-height: 300px;
}

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 1024px) {
  .intro__container, .map-section {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section__header {
    font-size: 2rem;
  }
  .room__card img {
    height: 200px;
  }
  .intro__video {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .section__header {
    font-size: 1.6rem;
  }
}
/* ---------- BOOKING SECTION ENHANCEMENTS ---------- */
.booking__container {
  --gold: #c9a45c;
  --gold-soft: rgba(201, 164, 92, 0.25);
  --ink: #1f1f1f;
  --muted: #6b6b6b;
  --glass-bg: rgba(255, 255, 255, 0.65);

  max-width: 960px;
  margin: 5rem auto;
  padding: 3.8rem 3.2rem;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(255,248,240,0.9)
  );
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-soft);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);
  position: relative;
  animation: fadeUp 0.8s ease forwards;
}

/* Entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================================
   BOOKING FORM â€“ LAYOUT UPGRADE
================================ */
.booking__form__container form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 2rem;
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.75),
    rgba(255,248,240,0.9)
  );
  backdrop-filter: blur(14px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* Full-width sections */
.booking__form__container fieldset,
#booking-summary,
.booking__form__container button {
  grid-column: 1 / -1;
}

/* Mobile */
@media (max-width: 768px) {
  .booking__form__container form {
    grid-template-columns: 1fr;
    padding: 1.8rem;
  }
}
/* ================================
   INPUT GROUP â€“ LUXURY STYLE
================================ */
.input__group {
  position: relative;
}

.input__group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a7a5a;
}

.input__group input,
.input__group select {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  font-size: 0.95rem;
  transition: all 0.35s ease;
}

/* Hover depth */
.input__group input:hover,
.input__group select:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

/* Focus glow */
.input__group input:focus,
.input__group select:focus {
  outline: none;
  border-color: #c9a45c;
  box-shadow: 0 0 0 6px rgba(201,164,92,0.25);
}
/* ================================
   DATE PICKER â€“ GLASS FEEL
================================ */
.input__group input[type="date"] {
  position: relative;
  cursor: pointer;
}

.input__group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.input__group input[type="date"]::after {
  content: "ðŸ“…";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #c9a45c;
  pointer-events: none;
}
/* ================================
   PAYMENT OPTIONS â€“ CARD STYLE
================================ */
fieldset {
  border: none;
  padding: 0;
  margin-top: 1rem;
}

fieldset legend {
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a7a5a;
  margin-bottom: 1rem;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.8rem;
}

fieldset label:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

fieldset input[type="radio"] {
  accent-color: #c9a45c;
}
/* ================================
   FILE UPLOAD â€“ PREMIUM
================================ */
#proof-upload input[type="file"] {
  padding: 1.2rem;
  border-radius: 18px;
  border: 2px dashed rgba(201,164,92,0.6);
  background: rgba(255,248,240,0.8);
  cursor: pointer;
}
/* ================================
   BOOKING SUMMARY â€“ RECEIPT CARD
================================ */
#booking-summary {
  padding: 1.8rem 2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff7ec, #ffecd3);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

#booking-summary h3 {
  margin-bottom: 1rem;
  color: #bfa06f;
}

#booking-summary p {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
/* ================================
   SUBMIT BUTTON â€“ LUXURY CTA
================================ */
.booking__form__container button {
  justify-self: center;
  margin-top: 1.5rem;
  padding: 1.1rem 3.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #c9a45c, #b08b45);
  box-shadow: 0 25px 55px rgba(201,164,92,0.55);
  font-weight: 600;
  letter-spacing: 1.2px;
  transition: all 0.4s ease;
}

.booking__form__container button:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px rgba(201,164,92,0.7);
}

/* Concierge back link */
.booking__back {
  position: absolute;
  top: 1.8rem;
  left: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking__back:hover {
  color: #b08b45;
  transform: translateX(-4px);
}

/* =========================
   BOOKING STEPS
========================= */
.booking-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.booking-step {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #bbb;
  position: relative;
}

.booking-step::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #eee;
  border-radius: 50%;
  display: block;
  margin: 0 auto 0.6rem;
  transition: all 0.4s ease;
}

.booking-step.active {
  color: var(--gold);
}

.booking-step.active::before {
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(201,164,92,0.18);
}

.booking-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #eee;
}

.booking-step.active::after {
  background: var(--gold);
}

/* =========================
   FORM LABELS
========================= */
.booking__container label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--muted);
}

/* =========================
   GLASS DATE SELECTOR
========================= */
.booking__container input[type="date"],
.booking__container input,
.booking__container select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  transition: all 0.35s ease;
}

.booking__container input:hover,
.booking__container select:hover {
  background: rgba(255,255,255,0.8);
}

.booking__container input:focus,
.booking__container select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(201,164,92,0.22);
}

/* =========================
   PRIMARY CTA
========================= */
.booking__container button,
.booking__container .btn {
  margin-top: 2rem;
  background: linear-gradient(135deg, #c9a45c, #b08b45);
  color: #fff;
  padding: 1.05rem 3rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 20px 45px rgba(201,164,92,0.45);
  cursor: pointer;
  transition: all 0.4s ease;
}

.booking__container button:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 65px rgba(201,164,92,0.6);
}

/* =========================
   PAYMENT ICONS
========================= */
.payment-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.payment-info img {
  width: 100px;   /* Max width */
  height: auto;   /* Maintain aspect ratio */
  object-fit: contain;
  transition: transform 0.2s ease;
}

.payment-info img:hover {
  transform: scale(1.05); /* subtle hover animation */
}


.payment-icons img {
  width: 46px;
  height: 46px;
  padding: 8px;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.payment-icons img:hover {
  transform: translateY(-6px) scale(1.15);
  box-shadow: 0 18px 35px rgba(0,0,0,0.2);
}

/* =========================
   EFT DETAILS â€” NOTE CARD
========================= */
.eft-details {
  margin-top: 2.5rem;
  padding: 1.4rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7ec, #ffecd3);
  border-left: 6px solid var(--gold);
  font-size: 0.95rem;
  line-height: 1.7;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .booking__container {
    padding: 2.4rem 1.5rem;
    border-radius: 20px;
  }

  .booking-steps {
    flex-direction: column;
    gap: 1.4rem;
  }

  .booking-step::after {
    display: none;
  }
} 
/* Logo Styling */
.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;

  /* enhances gold shine */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

/* Center align logo vertically */
.nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Optional: make navbar feel premium */
nav {
  background: rgba(0, 0, 0, 0.6); /* glass effect */
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }
}
/* Logo entrance animation */
.logo-animate {
  opacity: 0;
  transform: translateY(-20px) scale(0.9);
  animation: logoReveal 1.2s ease forwards;
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* subtle glow on hover */
.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(201,164,92,0.5));
  transition: 0.3s ease;
}
/* ===============================
   PREMIUM HERO SECTION
=============================== */

.premium-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background */
.hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
  z-index: 1;
  transform: scale(1.1);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

/* Gold gradient overlay */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.4),
    rgba(201,164,92,0.25)
  );
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

/* Logo */
.hero-logo {
  width: 220px;
  margin-bottom: 1.5rem;
  animation: fadeUp 1.2s ease;
}

/* Title */
.hero-title {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  animation: fadeUp 1.4s ease;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  animation: fadeUp 1.6s ease;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Primary luxury button */
.luxury-btn {
  background: linear-gradient(135deg, #c9a45c, #b08b45);
  border-radius: 50px;
  padding: 1rem 2.2rem;
  box-shadow: 0 15px 40px rgba(201,164,92,0.5);
  transition: 0.4s ease;
}

.luxury-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(201,164,92,0.7);
}

/* Secondary button */
.ghost-btn {
  border: 1px solid rgba(255,255,255,0.6);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s ease;
}

.ghost-btn:hover {
  background: rgba(255,255,255,0.1);
}
/* smoother feel across site */
* {
  transition: all 0.25s ease;
}

/* better spacing */
.section__container {
  padding: 6rem 0;
}

/* headings feel more luxury */
.section__header {
  letter-spacing: 1px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: slowZoom 20s infinite alternate ease-in-out;
}
.startup-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 180px;
  animation: logoPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(201,164,92,0.55));
}

.loader-line {
  width: 160px;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, #c9a45c, transparent);
  animation: lineGlow 1.8s ease-in-out infinite;
}

.loader-text {
  margin-top: 1rem;
  color: #c9a45c;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.startup-loader.hide-loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes lineGlow {
  0%, 100% {
    opacity: 0.35;
    transform: scaleX(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
/* ===============================
   FINAL PREMIUM HERO FIX
=============================== */

.premium-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background images */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(45%);
}

/* Dark luxury overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 45%,
      rgba(0,0,0,0.65) 100%
    );
  z-index: 2;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  transform: none;
  top: auto;
  padding-top: 90px;
}

/* Center logo */
.hero-logo {
  width: 190px;
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

/* Main title */
.hero-title {
  max-width: 850px;
  margin: 0 auto 1.4rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 8px 25px rgba(0,0,0,0.65);
}

/* Decorative line under title */
.hero-title::after {
  content: "";
  display: block;
  width: 220px;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a45c,
    transparent
  );
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.15rem;
  margin: 1.8rem auto 2.5rem;
  color: #f1f1f1;
  max-width: 720px;
  text-shadow: 0 4px 14px rgba(0,0,0,0.55);
}

/* Buttons container */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Shared button style */
.hero-buttons .btn {
  min-width: 210px;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Book button */
.luxury-btn {
  background: linear-gradient(135deg, #d4af5f, #b88935);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 18px 45px rgba(201,164,92,0.45);
}

.luxury-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 65px rgba(201,164,92,0.65);
}

/* Explore button */
.ghost-btn {
  background: rgba(0,0,0,0.25);
  color: #fff;
  border: 1px solid #c9a45c;
}

.ghost-btn:hover {
  background: rgba(201,164,92,0.18);
  transform: translateY(-4px);
}

/* Navbar improvement */
.lux-nav {
  height: 78px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
}

.logo-img {
  height: 75px !important;
  width: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
}

.nav__logo a {
  display: flex !important;
  align-items: center !important;
}

.lux-nav,
nav {
  height: 90px !important;
}

.nav__bar {
  min-height: 90px !important;
}
.nav__links {
  gap: 2.2rem;
}

.nav__links li a {
  font-size: 1rem;
}

.nav-cta {
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
}

/* Mobile */
@media (max-width: 768px) {
  .premium-hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-logo {
    width: 140px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}
/* =========================
   LUXURY ROOMS SECTION
========================= */

.room__container {
  background: #faf7f2;
  padding: 6rem 0;
}

.room__container .section__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.room__container .section__subheader {
  text-align: center;
  color: #c9a45c;
  letter-spacing: 3px;
}

.room-heading {
  display: block;
  width: 100%;
  text-align: center !important;
  font-size: 3rem;
  margin: 0 auto 1rem auto;
}

.room__container .section__header {
  text-align: center !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.room-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
  color: #666;
  font-size: 1rem;
}

/* Room cards */
.room__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Premium cards */
.room__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: all .35s ease;
}

.room__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.room__card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.room__card__details {
  padding: 1.5rem;
}

.room__card__details h4 {
  font-size: 1.4rem;
  margin-bottom: .8rem;
}

.room__card__details p {
  color: #666;
  line-height: 1.6;
}

.room__card__details h3 {
  margin-top: 1rem;
  color: #c9a45c;
}

/* Mobile */
@media (max-width: 992px) {
  .room__grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {
  .room__grid {
    grid-template-columns: 1fr;
  }

  .room-heading {
    font-size: 2.3rem;
  }
}
.reviews__container {
  text-align: center;
  background-color: #fff8f0;
}

.reviews__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.review__card {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

.review__card p {
  color: #555;
  line-height: 1.7;
  font-style: italic;
}

.review__card h4 {
  margin-top: 1.5rem;
  color: #bfa06f;
}
.review__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.review__card p {
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

.reviewer-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
  color: #bfa06f;
  font-weight: 600;
}

.reviewer-name i {
  font-size: 1.2rem;
}



@media (max-width: 768px) {
  .header__container {
    padding-top: 7rem;
  }
}

/* =========================
   FINAL MOBILE NAV FIX
========================= */
@media (max-width: 900px) {
  nav,
  .lux-nav {
    height: 78px;
    padding: 0 1rem;
  }

  .nav__bar {
    width: 100%;
    min-height: 78px;
  }

  .logo-img,
  .nav__logo img {
    height: 48px;
    width: auto;
  }

  .nav__actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .nav-cta,
  .nav__btn .btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .nav__menu__btn {
    display: block !important;
    color: #c9a45c !important;
    font-size: 2rem !important;
    cursor: pointer;
    z-index: 100000;
  }

  .nav__links {
    position: fixed !important;
    top: 78px !important;
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    height: auto !important;
    background: #181818 !important;
    padding: 1.5rem 0 !important;
    margin: 0 !important;

    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1.3rem !important;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: 0 20px 35px rgba(0,0,0,0.25);
    z-index: 99999 !important;
  }

  .nav__links.open {
    display: flex !important;
  }

  .nav__links li {
    list-style: none;
  }

  .nav__links li a,
  .nav__links a {
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
  }

  .hero-content,
  .header__container {
    padding-top: 90px;
  }
}

/* =========================
   ROOM MODAL FIX
========================= */

.modal {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.75);
}

.modal.show {
  display: block;
}

.modal-content {
  background: #fff8f0;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 18px;
  max-width: 850px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.modal-content .close,
.close {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

.modal-gallery {
  text-align: center;
}

.modal-gallery .main-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.thumbnail-row {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail-row img {
  width: 90px;
  height: 65px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s ease;
}

.thumbnail-row img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.room__card {
  cursor: pointer;
}
.modal {
  display: none;
}

.room-amenities {
  margin: 1rem 0;
  list-style: none;
  padding-left: 0;
}

.room-amenities li {
  margin-bottom: 0.6rem;
}
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 99999;
  color: #333;
}

.close:hover {
  color: #c9a45c;
}
.room-availability {
  color: #bfa06f;
  font-weight: 600;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.about__highlights {
  margin: 3rem auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about__highlights div {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(191,160,111,0.25);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.about__highlights h3 {
  color: #bfa06f;
  margin-bottom: .5rem;
}

.about__highlights p {
  color: #555;
  font-size: .95rem;
}

@media (max-width: 768px) {
  .about__highlights {
    grid-template-columns: 1fr;
  }
}
.bank-details-card{
    margin-top:20px;
    padding:25px;
    background:#fff;
    border:1px solid rgba(201,164,92,.25);
    border-radius:16px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.bank-details-card h4{
    display:flex;
    align-items:center;
    gap:10px;
    color:#c9a45c;
    margin-bottom:20px;
    font-size:1.2rem;
}

.bank-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.bank-row:last-child{
    border-bottom:none;
}

.bank-label{
    font-weight:700;
    color:#222;
}

.bank-row span:last-child{
    color:#666;
}
.payment-notice {
  grid-column: 1 / -1;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  margin: 1rem 0;
  background: #fff8ec;
  border-left: 5px solid #c9a45c;
  border-radius: 18px;
}

.payment-notice i {
  font-size: 1.8rem;
  color: #c9a45c;
}

.payment-notice h4 {
  margin-bottom: .5rem;
  color: #222;
}

.payment-notice p {
  color: #666;
  line-height: 1.8;
}

.payment-methods {
  grid-column: 1 / -1;
}

.payment-methods legend {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #8a7a5a;
}

.payment-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: .3s ease;
}

.payment-card:hover {
  transform: translateY(-3px);
  border-color: #c9a45c;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.payment-card input {
  margin-top: .35rem;
  accent-color: #c9a45c;
}

.payment-card strong {
  display: block;
  color: #222;
  margin-bottom: .25rem;
}

.payment-card span {
  color: #666;
  font-size: .9rem;
}

.payment-card:has(input:checked) {
  border-color: #c9a45c;
  background: #fff4df;
  box-shadow: 0 15px 35px rgba(201,164,92,.18);
}

#proof-upload,
#mobile-payment-info,
.bank-details-card {
  grid-column: 1 / -1;
}
.payment-detail-box {
  display: none;
  grid-column: 1 / -1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(45%);
  opacity: 0;
  z-index: 1;
  transform: scale(1.05);
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  animation: luxuryHeroMove 12s ease-in-out forwards;
}

.hero-slide:nth-child(2).active {
  animation: luxuryHeroMoveAlt 12s ease-in-out forwards;
}

@keyframes luxuryHeroMove {
  from {
    transform: scale(1.05) translateX(-1.5%);
  }
  to {
    transform: scale(1.12) translateX(1.5%);
  }
}

@keyframes luxuryHeroMoveAlt {
  from {
    transform: scale(1.05) translateX(1.5%);
  }
  to {
    transform: scale(1.12) translateX(-1.5%);
  }
}
/* ===============================
   CONFERENCE PAGE
=============================== */

.conference-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background:
      linear-gradient(
          rgba(0,0,0,.55),
          rgba(0,0,0,.55)
      ),
      url("Images/conference1.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  overflow: hidden;
}

.conference-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.7)
  );
}

.conference-hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
}

.conference-hero-content p {
  color: #c9a45c;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.conference-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.conference-hero-content span {
  display: block;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #eee;
}

.conference-section {
  background: #fff8f0;
}

.conference-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.conference-gallery > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.conference-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.conference-thumbs img {
  height: 95px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.75;
}

.conference-thumbs img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.conference-price {
  margin-top: 2rem;
  padding: 1.8rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, #ffecd3);
  border-left: 5px solid #c9a45c;
}

.conference-price h3 {
  color: #b08b45;
  margin-bottom: 0.5rem;
}

.conference-features {
  background: #101010;
  color: #fff;
  text-align: center;
}

.conference-features .section__header {
  color: #fff;
}

.conference-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.conference-cards div {
  padding: 2rem 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,164,92,0.25);
  backdrop-filter: blur(10px);
}

.conference-cards i {
  font-size: 2.3rem;
  color: #c9a45c;
  margin-bottom: 1rem;
}

.conference-cards h4 {
  font-size: 1rem;
  color: #fff;
}

.conference-layouts {
  background: #fff;
  text-align: center;
}

.layout-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.layout-list span {
  padding: 0.9rem 1.4rem;
  border-radius: 50px;
  background: #fff8f0;
  border: 1px solid rgba(201,164,92,0.35);
  color: #7a6030;
  font-weight: 600;
}

.conference-cta {
  padding: 5rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url("Images/conference1.jpg") center/cover no-repeat;
  color: #fff;
}

.conference-cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.conference-cta p {
  max-width: 650px;
  margin: 0 auto 2rem;
  color: #eee;
}
.home-conference {
  padding: 6rem 5%;
  background: #101010;
  color: #fff;
}

.home-conference__card {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.home-conference__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.home-conference__content .section__header {
  color: #fff;
}

.home-conference__content .section__description {
  color: #ddd;
  margin-bottom: 2rem;
}

.home-conference__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.home-conference__features span {
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,164,92,0.25);
  color: #f5f5f5;
}

/* Mobile */
@media (max-width: 900px) {
  .conference-grid,
  .home-conference__card {
    grid-template-columns: 1fr;
  }

  .conference-gallery > img,
  .home-conference__image img {
    height: 360px;
  }

  .conference-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-conference__features {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   PREMIUM RESTAURANT SHOWCASE FIX
=============================== */

.restaurant {
  padding: 6rem 4%;
}

.signature__grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.signature__grid .gallery__item {
  height: 360px;
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.16);
}

.signature__grid .gallery__item:nth-child(2) {
  height: 430px;
  transform: translateY(-18px);
}

.signature__grid .gallery__item img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.signature__grid .gallery__overlay {
  transform: translateY(0);
  opacity: 1;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0,0,0,0.75)
  );
  padding-top: 4rem;
}

.restaurant__interior {
  max-width: 1150px;
  margin: 5rem auto 0;
}

.interior__grid {
  max-width: 1050px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.5rem;
}

.interior__grid .gallery__item {
  height: 310px;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.14);
}

.interior__grid .gallery__item img {
  max-height: none;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .signature__grid,
  .interior__grid {
    grid-template-columns: 1fr;
  }

  .signature__grid .gallery__item,
  .signature__grid .gallery__item:nth-child(2),
  .interior__grid .gallery__item {
    height: 280px;
    transform: none;
  }
}
.gallery__item:hover,
.gallery__item:hover img {
  transform: none !important;
}

.gallery__item a {
  display: block;
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.download-btn {
  margin-top: 0.8rem;
  display: inline-block;
  background: #c9a45c;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
}

.download-btn:hover {
  background: #a6844f;
}
/* ===========================================
   PREMIUM DINING SECTION
=========================================== */

.restaurant{
    padding:7rem 5%;
    background:#0d0d0d;
    position:relative;
}

.restaurant::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:3px;
    background:#c9a45c;
}

.restaurant .section__subheader{
    color:#c9a45c;
    text-align:center;
    letter-spacing:4px;
    margin-bottom:.8rem;
}

.restaurant .section__header{
    color:#ffffff;
    text-align:center;
    font-size:3rem;
    margin-bottom:1rem;
}

.restaurant .section__description{
    color:#d7d7d7;
    text-align:center;
    max-width:720px;
    margin:0 auto 4rem;
    line-height:1.8;
}


/* ===========================================
   FOOD GALLERY
=========================================== */

.signature__grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.15fr 1fr;
    gap:1.8rem;
    align-items:center;
}

.signature__grid .gallery__item{
    background:#171717;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(201,164,92,.18);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    transition:.45s ease;
}

.signature__grid .gallery__item:hover{
    transform:translateY(-10px);
    box-shadow:0 35px 80px rgba(0,0,0,.45);
}

.signature__grid .gallery__item:nth-child(2){
    transform:translateY(-20px);
}

.signature__grid .gallery__item:nth-child(2):hover{
    transform:translateY(-30px);
}

.signature__grid .gallery__item img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
}

.gallery__overlay{
    padding:1.5rem;
    background:#171717;
    text-align:center;
}

.gallery__overlay h3{
    color:#fff;
    font-size:1.2rem;
    margin-bottom:.4rem;
}

.gallery__overlay p{
    color:#bdbdbd;
    font-size:.95rem;
}


/* ===========================================
   RESTAURANT INTERIOR
=========================================== */

.restaurant__interior{
    margin-top:6rem;
}

.restaurant__interior .section__header{
    color:#ffffff;
}

.restaurant__interior .section__subheader{
    color:#c9a45c;
}

.interior__grid{
    max-width:1100px;
    margin:3rem auto 0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2rem;
}

.interior__grid .gallery__item{
    background:#171717;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(201,164,92,.18);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    transition:.45s;
}

.interior__grid .gallery__item:hover{
    transform:translateY(-8px);
}

.interior__grid img{
    width:100%;
    height:320px;
    object-fit:cover;
}


/* ===========================================
   CTA
=========================================== */

.restaurant__cta{
    margin-top:6rem;
    text-align:center;
}

.restaurant__cta h2{
    color:#ffffff;
    font-size:2.5rem;
    margin-bottom:1rem;
}

.restaurant__cta p{
    color:#d0d0d0;
    max-width:650px;
    margin:auto;
    margin-bottom:2rem;
}

.restaurant__cta .luxury-btn{
    padding:1rem 2.4rem;
    border-radius:50px;
}


/* ===========================================
   MOBILE
=========================================== */

@media(max-width:992px){

.signature__grid{
    grid-template-columns:1fr;
}

.signature__grid .gallery__item:nth-child(2){
    transform:none;
}

.signature__grid .gallery__item:nth-child(2):hover{
    transform:translateY(-8px);
}

.signature__grid img{
    height:280px;
}

.interior__grid{
    grid-template-columns:1fr;
}

.interior__grid img{
    height:260px;
}

.restaurant .section__header{
    font-size:2.2rem;
}

.restaurant__cta h2{
    font-size:2rem;
}
/* =====================================================
   MOATHAMELENG — PREMIUM GUEST REVIEWS
===================================================== */

.reviews__container {
  background: #fff8f0;
  padding: 6rem 5%;
  text-align: center;
}

/* Section heading */
.reviews__container .section__subheader {
  color: #c9a45c;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.reviews__container .section__header {
  color: #1c1c1c;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 3.5rem;
  font-weight: 700;
}

/* Reviews layout */
.reviews__grid {
  max-width: 1050px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;

  align-items: stretch;
}

/* Individual review */
.review__card {
  position: relative;

  background: #ffffff;

  padding: 2.8rem 2.5rem 2.4rem;

  border-radius: 24px;

  border: 1px solid rgba(201, 164, 92, 0.18);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.07);

  text-align: center;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  overflow: hidden;
}

/* Gold accent at top */
.review__card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    transparent,
    #c9a45c,
    transparent
  );
}

/* Hover */
.review__card:hover {
  transform: translateY(-8px);

  border-color: rgba(201, 164, 92, 0.45);

  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.12);
}

/* Quote icon */
.review__card::after {
  content: "❝";

  position: absolute;

  top: 1.2rem;
  left: 1.5rem;

  font-family: Georgia, serif;

  font-size: 4rem;

  line-height: 1;

  color: rgba(201, 164, 92, 0.13);

  pointer-events: none;
}

/* Stars */
.review-stars {
  color: #c9a45c;

  font-size: 1rem;

  letter-spacing: 4px;

  margin-bottom: 1.5rem;
}

/* Review text */
.review__card p {
  position: relative;
  z-index: 2;

  color: #555;

  font-size: 1rem;

  line-height: 1.9;

  font-style: italic;

  margin: 0 auto;

  max-width: 650px;
}

/* Divider */
.review-divider {
  width: 45px;
  height: 1px;

  background: #c9a45c;

  margin: 1.8rem auto 1.2rem;
}

/* Reviewer area */
.reviewer-name {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.25rem;

  margin-top: 0;
}

/* Initial/avatar */
.reviewer-avatar {
  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 0.7rem;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #c9a45c,
    #a9803e
  );

  color: #fff;

  font-weight: 700;

  font-size: 0.95rem;

  box-shadow:
    0 8px 20px rgba(201, 164, 92, 0.25);
}

/* Name */
.reviewer-name strong {
  color: #222;

  font-size: 1rem;

  font-weight: 700;
}

/* Verified label */
.reviewer-name span {
  color: #9a9a9a;

  font-size: 0.75rem;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .reviews__container {
    padding: 4.5rem 1.2rem;
  }

  .reviews__container .section__header {
    font-size: 2.1rem;
    margin-bottom: 2.5rem;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review__card {
    padding: 2.5rem 1.7rem 2.2rem;
  }

  .review__card p {
    font-size: 0.95rem;
  }

}