/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #ffffff;
  color: #fff;
  margin: 0;
  padding: 0;
}
body > *:last-child {
  margin-bottom: 0 !important;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: transparent;
  transition: all 0.35s ease;
}

.header a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-left span {
  opacity: 0.5;
}

.header-center img {
  height: 85px;
  padding-left: 0vw;
  padding-right: 14vw;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* SEASON TOGGLE */
.season-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 25px;
  overflow: hidden;
}

.season-toggle span {
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.8;
}

.season-toggle .active {
  background: rgba(255,255,255,0.2);
}

/* LANGUAGE */
.language {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
}

/* BOOK BUTTON */
.book-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #000;
  padding: 12px 22px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("envato-labs-image-edit.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.35)
  );
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-content .subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .header-left {
    display: none;
  }
}
/* HERO ACTION (LINE + BUTTON) */
.hero-action {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.action-line {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

/* CTA BUTTON */
.action-btn {
  background: #ffffff;
  color: #111;
  padding: 12px 32px;
  border-radius: 35px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}
/* INTRO SECTION */
.intro-section {
  background: #ffffff;
  padding: 120px 20px;
  text-align: center;
  color: #6b5742;
}

.intro-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.divider-line {
  width: 1px;
  height: 80px;
  background: #e5d5c5;
  margin-bottom: 20px;
}

.intro-divider img {
  width: 115px;
  opacity: 0.6;
}

/* TEXT */
.intro-content {
  max-width: 920px;
  margin: 0 auto;
}

.intro-content p {
  font-size: 26px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 50px;
}

/* BUTTON */
.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #6b5742;
  color: #fff;
  padding: 16px 34px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.intro-btn span {
  font-size: 18px;
}

.intro-btn:hover {
  background: #584734;
}
/* HEADER SCROLL STATE */
.header.scrolled {
  background: #ffffff;
  border-bottom: 1px solid #e5d5c5;
}

.header.scrolled a,
.header.scrolled .language,
.header.scrolled .season-toggle span {
  color: #6b5742;
}

.header.scrolled .book-btn {
  background: #6b5742;
  color: #ffffff;
}
.header.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.header.scrolled a,
.header.scrolled .language,
.header.scrolled .season-toggle span {
  color: #6b5742;
}

.header.scrolled .season-toggle {
  border-color: #d8c6b2;
}

.header.scrolled .language {
  border-color: #d8c6b2;
}

.header.scrolled .book-btn {
  background: #6b5742;
  color: #ffffff;
}
/* IMAGE ROTATION SECTION */
.image-rotation {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #ffffff;
}

/* CAROUSEL */
.carousel-track {
  display: flex;
  gap: 40px;
  animation: scroll 40s linear infinite;
}

.carousel-item {
  flex: 0 0 auto;
  width: 420px;
  height: 300px;
  border-radius: 28px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRADIENT OVERLAYS */
.gradient {
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.gradient-left {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 20%,
    rgba(255,255,255,0)
  );
}

.gradient-right {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 20%,
    rgba(255,255,255,0)
  );
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .carousel-item {
    width: 280px;
    height: 200px;
  }

  .gradient {
    width: 120px;
  }
}
/* LIVING SECTION */
.living-section {
  background: #ffffff;
  padding: 0px 60px;
}

/* CONTAINER */
.living-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  column-gap: 120px;
  margin-bottom: 50px;
}

/* LEFT HEADING */
.living-left h2 {
  font-size: 36px;
  font-weight: 300;
  color: #6b5742;
  line-height: 1.2;
}

/* RIGHT CONTENT */
.living-right p {
  font-size: 20px;
  line-height: 1.6;
  color: #6b5742;
  margin-bottom: 40px;
  max-width: 520px;
}

/* OUTLINED BUTTON */
.living-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 34px;
  border: 1.5px solid #6b5742;
  border-radius: 40px;
  color: #6b5742;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.living-btn span {
  font-size: 18px;
}

/* HOVER EFFECT */
.living-btn:hover {
  background: #6b5742;
  color: #ffffff;
}
@media (max-width: 992px) {
  .living-container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .living-left h2 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .living-section {
    padding: 40px 20px;
  }

  .living-left h2 {
    font-size: 34px;
  }

  .living-right p {
    font-size: 18px;
  }
}
/* SECTION */
.rooms-section {
  position: relative;
  height: 650px;
  border-radius: 24px;
  overflow: hidden;
  margin: 120px auto;
  max-width: 1500px;
  background-color: #000;
}

/* BACKGROUND */
.rooms-bg {
  position: absolute;
  inset: 0;
  background: url("img2.jpg") center/cover no-repeat;
  filter: brightness(0.9);
}

/* TABS */
.rooms-tabs {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.rooms-tabs .tab {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  display: flex;
  gap: 8px;
  cursor: pointer;
}

.rooms-tabs .tab.active {
  background: #fff;
  color: #6b5742;
}

/* CONTENT */
.rooms-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 100%;
  padding: 100px 80px;
}

/* LEFT TEXT */
.rooms-text h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.25;
  padding-top: 80px;
}

/* SLIDER */
.rooms-slider {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* CARD */
.room-card {
  background: #fff;
  border-radius: 20px;
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
}

/* IMAGE */
.room-image {
  position: relative;
}

.room-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* PRICE BADGE */
.price {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #5847346e;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* INFO */
.room-info {
  padding: 18px;
}

.room-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #6b5742;
}

.room-info p {
  font-size: 14px;
  line-height: 1.5;
  color: #7a6a58;
}

/* NAV */
.rooms-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 3;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.nav-btn.active {
  background: #fff;
  color: #6b5742;
}
/* SECTION */
.rooms-section {
  position: relative;
  height: 650px;
  border-radius: 24px;
  overflow: hidden;
  margin: 120px auto;
  max-width: 1500px;
}

/* BACKGROUND */
.rooms-bg {
  position: absolute;
  inset: 0;
  background: url("IMG_9297.jpg") center/cover no-repeat;
  filter: brightness(0.9);
}

/* TABS */
.rooms-tabs {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.rooms-tabs .tab {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  display: flex;
  gap: 8px;
  cursor: pointer;
}

.rooms-tabs .tab.active {
  background: #fff;
  color: #6b5742;
}

/* CONTENT */
.rooms-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 100%;
  padding: 100px 80px;
}

/* LEFT TEXT */
.rooms-text h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.25;
}

/* SLIDER */
.rooms-slider {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* CARD */
.room-card {
  background: #fff;
  border-radius: 20px;
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
}

/* IMAGE */
.room-image {
  position: relative;
}

.room-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* PRICE BADGE */
.price {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #5847346e;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* INFO */
.room-info {
  padding: 18px;
}

.room-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #6b5742;
}

.room-info p {
  font-size: 14px;
  line-height: 1.5;
  color: #7a6a58;
}

/* NAV */
.rooms-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 3;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.nav-btn.active {
  background: #fff;
  color: #6b5742;
}
/* SLIDER CONTAINER */
.rooms-slider {
  overflow: hidden;
  width: 100%;
}

/* SLIDE TRACK */
.rooms-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.rooms-slider {
  overflow: hidden;
}

.rooms-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.room-card {
  min-width: 340px; /* MUST be fixed */
}
.culinary-section {
  background: #ffffff;
  text-align: center;
  padding: 120px 20px 140px;
  color: #6a543c;
  position: relative;
}

.culinary-icon img {
  width: 115px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.culinary-section h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 26px;
  color: #6a543c;
}

.culinary-section p {
  max-width: 880px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.9;
  color: #7a6650;
}

.culinary-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 34px;
  border: 1.5px solid #6a543c;
  border-radius: 40px;
  color: #6a543c;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.culinary-btn:hover {
  background: #6a543c;
  color: #fff;
}

.culinary-line {
  display: block;
  width: 1px;
  height: 60px;
  background: #d8c8b5;
  margin: 70px auto 0;
}
.culinary-slider {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.6)
  );
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 820px;
  z-index: 2;
}

.slide-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.9;
}

.slide-content h2 {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 30px;
}

.slide-btn {
  display: inline-flex;
  padding: 14px 34px;
  border: 1.5px solid #fff;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.slide-btn:hover {
  background: #fff;
  color: #000;
}
.slider-arrows {
  position: absolute;
  bottom: 70px;
  right: 60px;
  display: flex;
  gap: 18px;
  z-index: 3;
}

.arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.slider-pagination {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.slider-pagination .dot {
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,0.4);
}

.slider-pagination .dot.active {
  background: #fff;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.culinary-slider {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .culinary-slider {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.nature-section {
  background: #ffffff;
  padding: 95px 0px;
}

.nature-wrapper {
  max-width: 1400px;
  margin: auto;
  background: #f2ebe4;
  border-radius: 28px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.nature-left h2 {
  font-size: 38px;
  color: #6b4f2c;
  margin-bottom: 20px;
}

.nature-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #7a6a55;
}

.nature-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 26px;
  border: 1.5px solid #6b4f2c;
  border-radius: 30px;
  color: #6b4f2c;
  text-decoration: none;
}

/* IMAGE */
.nature-images {
  position: relative;
  height: 420px;
}

.nature-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  position: relative;
  z-index: 2;
  transition: opacity .4s ease;
}

.image-back {
  position: absolute;
  inset: 0;
  background: #c9d6df;
  border-radius: 26px;
  transform: translate(-18px, -18px);
}

/* RIGHT */
.nature-right {
  background: #fff;
  padding: 45px;
  border-radius: 26px;
}

.nature-right h4 {
  font-size: 20px;
  color: #6b4f2c;
}

.nature-right p {
  margin-top: 10px;
  color: #7a6a55;
  line-height: 1.7;
}

.nature-nav {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}

.nature-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #6b4f2c;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.nature-nav .next {
  background: #6b4f2c;
  color: #fff;
}

/* MOBILE */
@media (max-width: 991px) {
  .nature-wrapper {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .nature-images {
    height: 300px;
  }
}
.offers-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  background: url("img1.jpg") center/cover no-repeat;
  overflow: hidden;
}

.offers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.75),
    rgba(255,255,255,0.95)
  );
  z-index: 1;
}

.offers-inner {
  position: relative;
  z-index: 2;
  padding: 120px 80px 140px;
  width: 100%;
  box-sizing: border-box;
}

/* HEADER */
.offers-header {
  max-width: 520px;
  color: #fff;
}

.offers-header h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 16px;
}

.offers-header p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 22px;
}

.offers-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

/* STAGGERED CARDS */
.offers-stagger {
  display: flex;
  gap: 32px;
  margin-top: 90px;
}

.offer-card {
  width: 260px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 14px;
  color: #fff;
  transition: transform 0.4s ease;
}

.offer-card.up {
  transform: translateY(-40px);
}

.offer-card.down {
  transform: translateY(40px);
}

.offer-card:hover {
  transform: translateY(-50px);
}

.offer-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.offer-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.offer-card p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}

/* FOOT NOTE */
.offers-note {
  margin-top: 85px;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}
.reviews-section {
  background: #fcf9f6;
  padding: 110px 0;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.reviews-header .crown {
  display: block;
  font-size: 24px;
  color: #cbb59c;
  margin-bottom: 12px;
}

.reviews-header h2 {
  font-size: 40px;
  color: #6b4f2c;
  margin-bottom: 16px;
}

.reviews-header p {
  font-size: 16px;
  color: #7a6a58;
}

/* ROWS */
.reviews-row {
  width: 100vw;
  overflow: hidden;
  margin-bottom: 40px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* CARDS */
.review-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  width: 400px;
  box-shadow: 0 0px 0px rgba(0,0,0,0.04);
  font-size: 15px;
  color: #6f5d4b;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  font-weight: 500;
  color: #4b3a2a;
}

/* ANIMATIONS */
.reviews-row.left .reviews-track {
  animation: scrollLeft 15s linear infinite;
}

.reviews-row.right .reviews-track {
  animation: scrollRight 15s linear infinite;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.reviews-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #fbf7f3;
  padding: 120px 0;
  overflow: hidden;
}
.location-section {
  background: #fbf7f3;
  padding: 120px 40px;
  margin-top: 70px;
  border-radius: 30px;
}

.location-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.location-top h2 {
  font-size: 42px;
  color: #6b4f2c;
  line-height: 1.2;
}

.location-intro p {
  color: #7a6a58;
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid #b9a38c;
  color: #6b4f2c;
  text-decoration: none;
  font-size: 14px;
}

.location-tabs {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}

.location-tabs .tab {
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  background: #fff;
  color: #6b4f2c;
  font-size: 14px;
  cursor: pointer;
}

.location-tabs .tab.active {
  background: #6b4f2c;
  color: #fff;
}

.location-note {
  text-align: center;
  color: #7a6a58;
  font-size: 14px;
  margin-bottom: 40px;
}

/* MAP CARD */


.map-image {
  width: 100%;
  opacity: 0.9;
}

/* CITY LABELS */
.city {
  position: absolute;
  font-size: 13px;
  color: #6b4f2c;
}

.city small {
  color: #9a8a78;
}

.zurich { left: 80px; top: 220px; }
.vorarlberg { left: 140px; top: 160px; }
.garmisch { left: 320px; top: 140px; }
.munich { left: 460px; top: 110px; }
.vienna { right: 160px; top: 120px; }
.graz { right: 200px; top: 220px; }

/* MAP BUTTON */
.map-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: #6b4f2c;
  text-decoration: none;
}
/* TRAVEL CARDS WRAPPER */
.travel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 80px auto 0;
}

/* CARD */
.travel-card {
  position: relative;
  height: 420px;
  border-radius: 40px;
  overflow: hidden;
}

.travel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK GRADIENT OVERLAY */
.travel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.55)
  );
}

/* CONTENT */
.travel-content {
  position: absolute;
  inset: 0;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.travel-icon {
  font-size: 34px;
}

.travel-content h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 20px 0 10px;
}

.travel-content p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.95;
}

.travel-content a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-top: 20px;
}
/* GLASS CONTENT CARD */
.glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 32px;

  padding: 36px;
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* ICON */
.travel-icon {
  font-size: 34px;
  margin-bottom: 10px;
}

/* TITLE */
.travel-content h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* TEXT */
.travel-content p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.95;
}

/* GLASS BUTTON */
.glass-btn {
  margin-top: 25px;
  align-self: center;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 22px;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 14px;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.glass-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.travel-card img {
  transition: transform 0.6s ease;
}

.travel-card:hover img {
  transform: scale(1.05);
}
/* CTA SECTION WRAPPER */
.cta-section {
  width: 100%;
  padding: 120px 0px;
  background: #ffffff;
}

/* BACKGROUND CARD */
.cta-bg {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 500px;

  background: url("IMG_9453.jpg") center/cover no-repeat;
  border-radius: 36px;
  overflow: hidden;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.45)
  );
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;

  height: 100%;
  max-width: 820px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #ffffff;
  padding: 0 30px;
}

/* HEADING */
.cta-content h2 {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* TEXT */
.cta-content p {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 36px;
}

/* BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 34px;
  background: #ffffff;
  color: #000000;

  border-radius: 40px;
  font-size: 15px;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.cta-btn:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}
/* GLOBAL RESET */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* FOOTER */
.footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #6a563f;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
}

/* INNER CONTENT */
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px 60px;
  color: #fff;
}

/* TOP */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 20px;
}

.footer-brand img {
  width: 130px;
}

.footer-brand h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

.footer-cta p {
  font-size: 26px;
  margin-bottom: 22px;
}

.footer-btn {
  padding: 14px 38px;
  background: #fff;
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  margin-left: 160px;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 50px 0;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.footer-grid h4 {
  margin-bottom: 16px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 10px;
  opacity: 0.9;
}

/* LOGOS */
.footer-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.footer-logos img {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

/* CONTACT */
.footer-contact .pill {
  background: rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 12px 20px;
  margin-bottom: 12px;
}

.socials span {
  display: inline-block;
  margin-right: 10px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-credit {
  display: flex;
  gap: 20px;
  align-items: center;
}

.credit-box {
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 16px;
}
.shariq {
  color: #fff;
  text-decoration: none;
}
.weather-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.weather-location {
  opacity: 0.85;
}
.header.scrolled .weather-box {
  color: #6a563f; /* same brown as your design */
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.04);
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 14px 18px;
  }

  .header-left {
    display: none;
  }

  .header-center img {
    height: 100px;
  }

  .weather-box {
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-content .subtitle {
    font-size: 12px;
  }

  .hero-action {
    top: 70%;
  }
}
@media (max-width: 768px) {
  .carousel-item,
  .ring-item {
    width: 260px;
    height: 180px;
  }

  .gradient {
    width: 80px;
  }
}
@media (max-width: 992px) {
  .living-container,
  .rooms-content,
  .location-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .room-card {
    min-width: 260px;
  }

  .rooms-nav {
    bottom: 20px;
  }
}
@media (max-width: 768px) {
  .offers-stagger {
    flex-direction: column;
    gap: 30px;
  }

  .offer-card.up,
  .offer-card.down {
    transform: none;
  }
}
@media (max-width: 768px) {
  .review-card {
    width: 260px;
  }

  .reviews-row {
    margin-bottom: 30px;
  }
}
/* ======================================
   TRAVEL CARDS – MOBILE ONLY FIX
   Desktop remains untouched
====================================== */
@media (max-width: 768px) {

  .travel-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
  }

  .travel-card {
    position: relative;
    height: auto;
    border-radius: 22px;
    overflow: hidden;
  }

  .travel-card img {
    width: 100%;
    height: 300px;          /* controlled image height */
    object-fit: cover;
    display: block;
  }

  /* Glass content fix */
  .travel-content {
    position: relative;
    padding: 18px 16px 22px;  /* 👈 IMPORTANT */
    margin: -285px 12px 12px;  /* lift glass above image */
    border-radius: 20px;
  }

  .travel-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
  }

  .travel-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .travel-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  /* FIX LEARN MORE BUTTON */
  .glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 30px;
    white-space: nowrap;
  }

  .glass-btn span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .cta-bg {
    height: 380px;
  }

  .cta-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding: 60px 24px;
  }
}
/* Deluxe Room CSS */
.room-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 999;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 35px;
  background: #fff;
}

/* LEFT */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.header-left a {
  text-decoration: none;
  color: #f2ebe4;
}

.divider {
  opacity: 0.4;
}

/* CENTER LOGO */
.header-centerr img {
  height: 90px;
  padding-left: 10vw;
}

/* RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

/* WEATHER */
.weather-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 30px;
  font-size: 13px;
  color: #6a563f;
  background: #fff;
}

/* LANGUAGE */
.lang-select {
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 30px;
  font-size: 13px;
  color: #6a563f;
}

/* BOOK BUTTON */
.book-btn {
  padding: 10px 22px;
  background: #6a563f;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}
@media (max-width: 768px) {
  .header-left {
    display: none;
  }

  .room-header {
    grid-template-columns: auto auto;
  }

  .header-center {
    justify-self: start;
  }
}
/* WRAPPER */
.room-gallery {
  padding: 115px 0 40px;
}

/* GRID */
.gallery-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  padding: 0 40px;
}

/* MAIN IMAGE */
.gallery-main {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* 360 BUTTON */
.btn-360 {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* ARROWS */
.gallery-arrows {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 12px;
}

.arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  font-size: 20px;
  cursor: pointer;
}

/* THUMBNAILS */
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.thumb.active {
  opacity: 1;
  outline: 3px solid #6a563f;
}

.thumb:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .gallery-wrapper {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .gallery-thumbs {
    flex-direction: row;
    order: -1;
  }

  .thumb {
    height: 80px;
  }

  .gallery-main img {
    height: 320px;
  }
}
.gallery-main img {
  transition: opacity 0.3s ease;
}
.room-details {
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 0 40px;
}

/* META PILLS */
.room-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid #e4d4c4;
  border-radius: 40px;
  font-size: 14px;
  color: #6a563f;
  background: #fff;
}

.meta-pill .icon {
  font-size: 16px;
}

/* TITLE */
.room-title {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 28px;
  color: #000;
}

/* DESCRIPTION */
.room-description {
  max-width: 880px;
}

.room-description p {
  font-size: 15px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .room-details {
    padding: 0 24px;
  }

  .room-title {
    font-size: 34px;
  }

  .room-description p {
    font-size: 16px;
  }
}
.amenities-section {
  max-width: 1400px;
  margin: 70px auto 50px;
  padding: 0 40px;
}

.amenities-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* GRID — 6 IN ONE ROW */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

/* ITEM */
.amenity-item {
  text-align: center;
}

/* BOX */
.amenity-box {
  height: 170px;
  border: 1px solid #e4d4c4;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #fff;
}

/* ICON */
.amenity-box img {
  width: 48px;
  height: 48px;
  opacity: 0.9;
}

/* LABEL */
.amenity-item p {
  font-size: 16px;
  color: #000;
}
/* ICON STYLE */
.amenity-box i {
  font-size: 42px;
  color: #6a563f; /* same brown as design */
  opacity: 0.9;
}

/* KEEP YOUR EXISTING STYLES */
.amenity-box {
  height: 170px;
  border: 1px solid #e4d4c4;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #fff;
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.booking-section {
  width: 100%;
  background: #faf7f2;
  padding: 100px 0;
}

.booking-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

.booking-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #2b2b2b;
}

.booking-subtitle {
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 50px;
  max-width: 600px;
}

.booking-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #5a4a3b;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e2d7cc;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #6a523c;
}

.full-width {
  grid-column: 1 / -1;
  margin-top: 25px;
}

.form-action {
  margin-top: 40px;
  text-align: right;
}

.form-action button {
  background: #6a523c;
  color: #fff;
  border: none;
  padding: 14px 34px;
  font-size: 15px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-action button:hover {
  background: #584331;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-container {
    padding: 0 20px;
  }

  .booking-form {
    padding: 30px;
  }

  .form-action {
    text-align: center;
  }
}
.explore-rooms {
  padding: 120px 0;
  background: #fff;
}

.explore-header {
  text-align: center;
  margin-bottom: 70px;
}

.explore-header h2 {
  font-size: 42px;
  font-weight: 500;
  color: #5a432e;
}

.explore-header p {
  font-size: 16px;
  color: #7a6a58;
  margin-top: 8px;
}

.rooms-grid {
  max-width: 1100px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.room-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 420px;
  min-width: 500px;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.room-tags span {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.85);
  font-size: 13px;
  color: #4a3b2c;
}

.room-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0)
  );
  color: #fff;
}

.room-overlay h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.room-overlay p {
  font-size: 14px;
  max-width: 90%;
  line-height: 1.6;
  margin-bottom: 22px;
}

.room-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: #fff;
  color: #000;
}

.btn.outline {
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}

.btn.right {
  margin-left: auto;
}

.explore-footer {
  margin-top: 45px;
  text-align: center;
}

.browse-btn {
  padding: 12px 34px;
  border-radius: 30px;
  border: 1px solid #6a523c;
  color: #6a523c;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
}
/* ===============================
   MOBILE RESET – HARD OVERRIDE
================================ */

@media (max-width: 768px) {

  /* Force clean layout */
  .rooms-grid {
    display: block;
    padding: 0 16px;
  }

  .room-card {
    height: auto !important;
    min-height: unset !important;
    border-radius: 22px;
  }

  /* IMAGE FIX */
  .room-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    display: block;
  }

  /* TAGS – STACKED & SAFE */
  .room-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 3;
  }

  .room-tags span {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.9);
    white-space: nowrap;
  }

  /* OVERLAY – MOBILE CARD STYLE */
  .room-overlay {
    position: relative;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.6)
    );
    padding: 18px;
  }

  .room-overlay h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .room-overlay p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  /* BUTTONS – FULL WIDTH */
  .room-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .room-actions .btn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
  }

  .btn.right {
    margin-left: 0 !important;
  }

  /* FOOTER BUTTON */
  .browse-btn {
    width: 100%;
    max-width: 280px;
  }
}
.lux-rooms {
  position: relative;
  padding: 80px 60px;
  border-radius: 24px;
  overflow: hidden;
}

.lux-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.1);
}

.lux-rooms::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #F2EBE4;
}

.lux-left {
  position: relative;
  z-index: 2;
  max-width: 320px;
  color: #fff;
}

.lux-left h2 {
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  color: #000;
}

.lux-slider {
  position: relative;
  z-index: 2;
  margin-left: 360px;
}

.lux-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.lux-card {
  min-width: 320px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px none !important;
  cursor: pointer;
}
.lux-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* Optional hover effect (desktop only) */
.lux-card-link:hover .lux-card {
  transform: translateY(-4px);
  transition: 0.3s ease;
}


.lux-img {
  position: relative;
}

.lux-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.price {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #000;
}

.lux-info {
  padding: 18px;
}

.lux-info h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #000;
}

.lux-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
}

.lux-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #6b5a45;
}

.lux-icons i {
  margin-right: 6px;
}

.lux-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.lux-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  font-size: 18px;
  cursor: pointer;
}

.lux-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;

  /* REMOVE SCROLLBAR */
  scrollbar-width: none;        /* Firefox */
}

.lux-track::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}
/* =========================
   LUX ROOMS - MOBILE ONLY
   Desktop stays untouched
========================= */
@media (max-width: 768px) {

  /* Section spacing */
  .lux-rooms{
    padding: 24px 16px;
    border-radius: 18px;
  }

  /* Put left heading on top */
  .lux-left{
    max-width: 100%;
    margin: 0 0 18px 0;
    text-align: left;
  }

  .lux-left h2{
    font-size: 26px;
    line-height: 1.2;
    margin: 0;
  }

  /* Slider area full width */
  .lux-slider{
    margin-left: 0 !important;     /* removes desktop left offset */
    width: 100%;
  }

  /* Make track swipeable */
  .lux-track{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  /* hide scrollbar */
  .lux-track{
    scrollbar-width: none;
  }
  .lux-track::-webkit-scrollbar{
    display: none;
  }

  /* Cards: one per screen */
  .lux-card{
    min-width: 86vw;               /* one card view */
    max-width: 420px;
    scroll-snap-align: center;
  }

  /* Image height controlled for mobile */
  .lux-img img{
    height: 210px;
    object-fit: cover;
  }

  /* text spacing */
  .lux-info{
    padding: 16px 16px 18px;
  }

  .lux-info h3{
    font-size: 20px;
    margin-bottom: 8px;
  }

  .lux-info p{
    font-size: 14px;
    line-height: 1.5;
  }

  /* icons wrap nicely */
  .lux-icons{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 13px;
  }

  /* navigation: hide on mobile (swipe) */
  .lux-nav{
    display: none;
  }
}
/* =========================
   HAMBURGER FIX – MOBILE ONLY
========================= */

/* Desktop: hide hamburger */
.hamburger {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {

  /* SHOW hamburger */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    background: #000;   /* change to white if header is dark */
    display: block;
  }

  /* Hide Book button */
  .book-btn {
    display: none;
  }

  /* Fix header-right alignment */
  .header-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  /* Mobile menu */
  .header-left {
    position: fixed;
    top: 133px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px 0;
    display: none;
    z-index: 1000;
  }

  .header-left.active {
    display: flex;
  }

  .header-left a {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .header-left span {
    display: none;
  }
}
/* LOGO BASE */
.header-center {
  position: relative;
}

.logo {
  height: 60px;              /* adjust if needed */
  transition: opacity 0.3s ease;
}

/* Default state */
.logo-black {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

/* On scroll */
.header.scrolled .logo-gold {
  opacity: 0;
}

.header.scrolled .logo-black {
  opacity: 1;
}

/* Mobile logo size */
@media (max-width: 768px) {
  .logo {
    height: 48px;
  }
}
/* DROPDOWN BASE */
.menu-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.dropdown-menu a {
  padding: 12px 16px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

/* Desktop hover */
@media (min-width: 769px) {
  .menu-dropdown:hover .dropdown-menu {
    display: flex;
  }
}
@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #fafafa;
    display: none;
  }

  .menu-dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Gallery CSS */
/* =========================
   GALLERY HERO SECTION
========================= */

.gallery-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("img1.jpg"); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Soft dark overlay */
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.35)
  );
  z-index: 1;
}

/* Content */
.gallery-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff;
}

/* Subtitle */
.gallery-subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 16px;
}

/* Main Heading */
.gallery-hero-content h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.15;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .gallery-hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    height: 85vh;
  }

  .gallery-subtitle {
    font-size: 12px;
  }

  .gallery-hero-content h1 {
    font-size: 32px;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .gallery-hero {
    height: 80vh;
  }

  .gallery-hero-content h1 {
    font-size: 26px;
  }
}
/* =========================
   GALLERY INTRO SECTION
========================= */

.gallery-intro {
  background: #fbf8f3;
  padding: 120px 40px;
}

.gallery-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 120px;
  align-items: start;
}

/* LEFT TITLE */
.gallery-intro-left h2 {
  font-size: 48px;
  font-weight: 400;
  color: #6a523c;
  line-height: 1.2;
}

/* RIGHT TEXT */
.gallery-intro-right p {
  font-size: 18px;
  line-height: 1.7;
  color: #6a523c;
  max-width: 680px;
}

/* =========================
   RESPONSIVE (MOBILE ONLY)
========================= */

@media (max-width: 992px) {
  .gallery-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-intro {
    padding: 80px 24px;
  }

  .gallery-intro-left h2 {
    font-size: 34px;
  }

  .gallery-intro-right p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-intro-left h2 {
    font-size: 28px;
  }

  .gallery-intro-right p {
    font-size: 15px;
    line-height: 1.6;
  }
}
/* ===============================
   GALLERY SLIDER SECTION
================================ */

.gallery-slider-section {
  position: relative;
  height: 520px;
  margin: 100px auto;
  border-radius: 48px;
  overflow: hidden;
  background: #000;
}

/* SLIDER TRACK */
.gallery-slider-track {
  display: flex;
  width: max-content;
  animation: slideGallery 45s linear infinite;
}

/* IMAGE GROUP */
.gallery-slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 40px;
}

.gallery-slide img {
  width: 260px;
  height: 170px;
  object-fit: cover;
  border-radius: 22px;
  filter: brightness(0.85);
}

/* DARK OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* CENTER CONTENT */
.gallery-center-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.gallery-logo {
  width: 120px;
  margin-bottom: 24px;
}

.gallery-center-content h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 14px;
}

.gallery-center-content p {
  max-width: 520px;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* BUTTON */
.gallery-btn {
  padding: 12px 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: rgba(255,255,255,0.35);
}

/* ===============================
   SLIDE ANIMATION
================================ */

@keyframes slideGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {

  .gallery-slider-section {
    height: 420px;
    border-radius: 32px;
    margin: 80px 16px;
  }

  .gallery-slide {
    padding: 20px;
    gap: 12px;
  }

  .gallery-slide img {
    width: 180px;
    height: 120px;
    border-radius: 16px;
  }

  .gallery-center-content h2 {
    font-size: 26px;
  }

  .gallery-center-content p {
    font-size: 14px;
  }

  .gallery-logo {
    width: 110px;
  }
}
/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 80px 20px;
  background: #faf7f2;
  max-width: 1300px;
  margin: auto;
}

/* FILTERS */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filters .filter {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #e6dccf;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  color: #6a563f;
}

.gallery-filters .filter.active {
  background: #e9dfd3;
  border-color: #e9dfd3;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 18px;
}

/* ITEMS */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* SIZE VARIANTS */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* SHOW MORE */
.gallery-more {
  text-align: center;
  margin-top: 40px;
}

.gallery-more button {
  padding: 10px 26px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #d8c6b2;
  font-size: 14px;
  cursor: pointer;
  color: #6a563f;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 14px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-filters {
    flex-wrap: wrap;
    gap: 8px;
  }

  .gallery-filters .filter {
    font-size: 13px;
    padding: 7px 14px;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }
}
/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    right: 16px;
    bottom: 16px;
  }
}
.fa {
    color: rgb(120, 102, 82);
}
