.hero-slider {
  width: 100%;
  height: 100vh;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
  position: relative;
}

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

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text */
.hero-text {
  bottom: 30%;
  z-index: 2;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 700;
  color: #d4c236;
}

.hero-text p {
  font-size: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

/* Booking Bar */
.booking-bar {
  position: relative;
  z-index: 4;
  margin-top: 2%;
}

.booking-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.363);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.712);
}

/* Booking Item */
.booking-item {
  flex: 1;
  text-align: left;
}

.booking-item label {
  font-size: 15px;
  font-weight: 700;
  color: #c2ab00;
  margin-bottom: 6px;
  display: block;
}

.booking-item select {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #000;
  font-weight: 600;
}

/* Button */
.btn-book {
  background: #d4c236 !important;
  color: black !important;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 40px;
  transition: 0.3s ease;
  margin-top: 10%;
  width: 100%;
}

.btn-book:hover {
  background: #ecd739;
  color: #000000c9;
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

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

/* Hide fields on mobile */
.hide-mobile {
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }

  .booking-box {
    padding: 14px;
    justify-content: center;
    display: none;
  }

  .booking-btn {
    width: 100%;
  }

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

@media (max-width: 575px) {
  .hero-title {
    font-size: 44px;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

.about-property {
  padding: 80px 0;
  background: #fff;
  font-family: "Georgia", serif;
}

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

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

/* LEFT CONTENT */
.section-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c9a227;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-content h2 em {
  font-style: italic;
}

.about-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  max-width: 500px;
}

.read-more-box {
  margin-top: 12px;
}

.read-more-link {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4c236;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.read-more-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #d4c236;
  transition: 0.3s ease;
}

.read-more-link:hover::after {
  width: 100%;
}

/* RIGHT IMAGES */
.about-images {
  position: relative;
  height: 450px;
}

.image-box {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

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

.image-box:hover img {
  transform: scale(1.08);
}

.image-one {
  width: 280px;
  height: 360px;
  top: 0;
  left: 60px;
}

.image-two {
  width: 260px;
  height: 340px;
  bottom: 0;
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-images {
    height: 400px;
  }

  .image-one {
    left: 0;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 34px;
  }

  .check-info {
    gap: 30px;
  }

  .about-images {
    height: 320px;
  }

  .image-one,
  .image-two {
    width: 200px;
    height: 260px;
  }
}

.small-label {
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #d4c236;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
}

.section-subtitle {
  max-width: 720px;
  margin: auto;
  opacity: 0.85;
}

.view-all-btn {
  border: 1px solid #4b4200;
  color: #6d6000;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}

.view-all-btn:hover {
  color: #000;
  background: #4b420033;
  border: 1px solid #000;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card {
  min-width: 32%;
  height: 450px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* Responsive cards */
@media (max-width: 992px) {
  .luxury-card {
    min-width: 48%;
  }
}

@media (max-width: 576px) {
  .luxury-card {
    min-width: 100%;
  }
}

/* Image */
.luxury-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay */
.luxury-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 26px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

/* Hover reveal */
.hover-text,
.view-btn {
  text-decoration: none;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.35s ease;
}

.luxury-card:hover img {
  transform: scale(1.08);
}

.luxury-card:hover .hover-text,
.luxury-card:hover .view-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #d4c236;
  border: none;
  z-index: 5;
}

.slider-arrow.left {
  left: 0px;
}

.slider-arrow.right {
  right: 0px;
}

.curated-escapes {
  background: #fff;
}

/* Header */
.small-label {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #c5b06a;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
}

.view-link {
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 700;
  color: #000;
}

/* Cards */
.escape-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.escape-card.featured {
  transform: scale(1.05);
}

/* Image */
.escape-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

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

/* Hover Transform */
.escape-card:hover img {
  transform: scale(1.12);
}

/* Badge */
.badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
}

/* Content */
.escape-body {
  padding: 18px 20px;
}

.escape-body h5 {
  font-weight: 700;
}

.escape-body p {
  font-size: 14px;
  opacity: 0.8;
}

/* Discover Link */
.discover-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #000;
}

/* Responsive */
@media (max-width: 991px) {
  .escape-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 32px;
  }

  .escape-img {
    height: 260px;
  }
}

.flavor-section {
  background: radial-gradient(circle at top left, #1a1a1a, #0b0b0b);
  padding: 100px 0;
  color: #fff;
}

/* IMAGE STACK */
.image-stack {
  height: 420px;
  position: relative;
}

.image-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.1);
}

.left-img {
  width: 260px;
  height: 320px;
  left: 0;
  top: 40px;
}

.right-img {
  width: 260px;
  height: 360px;
  left: 200px;
  top: 0;
}

/* QUOTE CARD */
.quote-card {
  position: absolute;
  bottom: -10px;
  left: 120px;
  background: rgba(20, 20, 20, 0.95);
  padding: 18px 22px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  font-size: 15px;
  max-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.quote-card small {
  color: #aaa;
  font-size: 11px;
  letter-spacing: 1px;
}

/* TEXT STYLES */
.small-label {
  letter-spacing: 2px;
  color: #aaa;
  font-size: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
}

.section-desc {
  color: #cfcfcf;
  max-width: 520px;
}

.flavor-list li {
  margin-bottom: 18px;
  font-size: 15px;
  color: #ddd;
}

/* BUTTON */
.explore-btn {
  border: 1px solid #aaa;
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  transition: 0.3s;
}

.explore-btn:hover {
  background: white;
  color: black;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .image-stack {
    height: 380px;
    margin-bottom: 40px;
  }

  .right-img {
    left: 160px;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .left-img,
  .right-img {
    width: 200px;
    height: 260px;
  }

  .right-img {
    left: 120px;
  }

  .quote-card {
    left: 50px;
  }
}

/* Section */
.curated-escapes {
  background: #f9f8f6;
}

/* Letter Spacing */
.letter-spacing {
  letter-spacing: 2px;
}

/* Offer Card */
.offer-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Image */
.image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .image-wrapper img {
  transform: scale(1.08);
}

/* Badge */
.offer-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #c8a44d, #e6c36f);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.offer-badge.highlight {
  background: linear-gradient(135deg, #9c7b2f, #d4af37);
}

/* Gold Button */
.btn-gold {
  background: linear-gradient(135deg, #c8a44d, #e6c36f);
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background: #000;
  color: #fff;
}

/* View All */
.view-offers {
  color: #000;
  transition: 0.3s;
}

.view-offers:hover {
  color: #c8a44d;
}

/* Responsive */
@media (max-width: 768px) {
  .image-wrapper img {
    height: 220px;
  }
}

.celebration-section {
  padding: 100px 0;
  background: #fff;
}

/* HEADER */
.small-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  margin-top: 6px;
}

.title-line {
  width: 50px;
  height: 2px;
  background: #ddd;
  margin: 18px auto 0;
}

/* CARD DESIGN */
.celebration-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.celebration-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY CONTENT */
.card-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: white;
  text-align: left;
  z-index: 2;
}

.card-overlay h4 {
  font-size: 22px;
  font-weight: 600;
}

.card-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
}

/* BUTTON */
.card-btn {
  background: white;
  color: black;
  border-radius: 25px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.card-btn:hover {
  background: black;
  color: white;
}

/* DARK GRADIENT */
.celebration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.15),
    transparent
  );
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .section-title {
    font-size: 34px;
  }

  .celebration-card {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .celebration-section {
    padding: 70px 0;
  }

  .celebration-card {
    height: 260px;
  }

  .card-overlay h4 {
    font-size: 18px;
  }
}

.mice-section {
  padding: 100px 0;
  background: #fff;
}

/* TEXT */
.small-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  margin-top: 6px;
}

.section-text {
  color: #666;
  font-size: 15px;
  max-width: 520px;
}

/* INFO */
.info-title {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #888;
}

.info-text {
  font-size: 14px;
  color: #444;
}

/* BUTTON */
.mice-btn {
  background: black;
  color: white;
  border-radius: 30px;
  padding: 10px 26px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

.mice-btn:hover {
  background: #444;
  color: white;
}

/* IMAGE */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.main-image {
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.6s ease;
}

.image-wrapper:hover .main-image {
  transform: scale(1.03);
}

/* CIRCLE BADGE */
.circle-badge {
  position: absolute;
  top: -35px;
  left: -35px;
  width: 120px;
  height: 120px;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #777;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .section-title {
    font-size: 34px;
  }

  .circle-badge {
    top: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .mice-section {
    padding: 80px 0;
  }

  .image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .circle-badge {
    display: none;
  }
}

.why-lumina {
  padding: 100px 0;
  background: #fafafa;
}

/* Heading */
.small-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #aaa;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-top: 6px;
}

.title-line {
  width: 50px;
  height: 1px;
  background: #ccc;
  margin: 12px auto 0;
}

/* Cards */
.philosophy-card {
  background: white;
  padding: 34px 26px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
  height: 100%;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

/* Icon */
.icon-box {
  font-size: 26px;
  margin-bottom: 14px;
  color: #555;
}

/* Text */
.philosophy-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.philosophy-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .why-lumina {
    padding: 70px 0;
  }

  .section-title {
    font-size: 26px;
  }
}

.quote-section {
  background: #000;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.quote-icon {
  color: #f5c400;
  font-size: 18px;
  margin-bottom: 15px;
}

.quote-text {
  font-family: "Georgia", serif;
  font-size: 22px;
  font-style: italic;
  max-width: 850px;
  margin: auto;
  line-height: 1.7;
}

.quote-author {
  margin-top: 25px;
  font-size: 12px;
  color: #f5c400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.quote-role {
  font-size: 11px;
  color: #aaa;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .quote-text {
    font-size: 18px;
  }
}
