/* Section Background */
.moonlight-section {
  background-color: #f9f7f3;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Stars Background */
.moonlight-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/stars.png');
  opacity: 0.6;
  pointer-events: none;
}

/* Gold Icon */
.top-icon {
  font-size: 40px;
  color: #d4a825;
}

/* Titles */
.main-title {
  font-weight: 600;
  color: #0f2647;
  font-size: 32px;
  font-family: 'Playfair Display', serif;
}

.sub-title {
  font-size: 32px;
  font-weight: 600;
  color: #0f2647;
  margin-top: -6px;
  font-family: 'Playfair Display', serif;
}

/* Description Text */
.moon-desc {
  font-size: 17px;
  color: #4a4a4a;
  max-width: 900px;
  margin: 20px auto;
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
}

/* Info Boxes */
.info-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.info-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  /* ensures equal height alignment */
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.info-icon {
  font-size: 40px;
  color: #d4a825;
  margin-bottom: 10px;
}

.info-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
}

.info-text {
  font-size: 22px;
  color: #425574;
  font-weight: 500;
  margin-top: 5px;
  font-family: 'Cormorant Garamond', serif;
}


/* ======================
   RESPONSIVE FIXES
   ====================== */

/* Laptops / Large Tablets */
@media (max-width: 992px) {
  .moonlight-section {
    padding: 80px 30px;
  }

  .main-title,
  .sub-title {
    font-size: 34px;
  }
}

/* Tablets → 2 Box Grid */
@media (max-width: 768px) {
  .info-wrapper {
    justify-content: center;
  }
}

/* Mobiles → 1 Box Per Row */
@media (max-width: 576px) {
  .moonlight-section {
    padding: 60px 20px;
  }

  .top-icon {
    font-size: 34px;
  }

  .main-title {
    font-size: 28px;
  }

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

  .moon-desc {
    font-size: 15px;
  }

  .info-box {
    padding: 25px;
  }
}






/* Section Background */
.experience-area {
  background: #0b1a2e;
  /* Deep navy premium background */
  padding: 100px 0;
  font-family: 'Cormorant Garamond', serif;
}

/* Subtitle */
.exp-smallhead {
  color: #D2A5AD;
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Main Heading */
.exp-mainhead {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
}

/* Description Text */
.exp-description {
  max-width: 850px;
  margin: 15px auto 40px;
  font-size: 17px;
  color: #c5d2e2;
  font-family: 'Lato', sans-serif;
  /* Light bluish text for better contrast */
}

/* Feature Cards */
.exp-feature-box {

  background: rgba(255, 255, 255, 0.08);
  padding: 35px 28px;
  border-radius: 12px;
  text-align: left;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s ease-in-out;
}

.exp-feature-box:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}

/* Icon Circle */
.exp-feature-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: #d4a825;
}

/* Card Title */
.exp-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Card Description */
.exp-feature-text {
  color: #e2e2e2;
  font-size: 17px;
  line-height: 1.6;
  font-family: 'Lato', sans-serif;
}




/* Background */
.visual-journey {
  background: #ffffff;
  color: #fff;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Soft gold subtitle */
.vj-subtitle {
  letter-spacing: 3px;
  color: #D2A5AD;
  font-size: 15px;
  margin-bottom: 10px;
}

/* Main Title */
.vj-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Description text */
.vj-desc {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  max-width: 700px;
  margin: auto;
  color: #425574;
}

/* Image Card */
.vj-img-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
}

/* Images */
.vj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Card (Right Image) */
.vj-overlay-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Overlay Text */
.vj-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: white;
}

.vj-overlay h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 5px;
}

.vj-overlay p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

/* ⭐ Soft star particles */
.visual-journey::after {
  content: "";
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="white" opacity="0.4"/><circle cx="300" cy="50" r="1" fill="white" opacity="0.4"/><circle cx="500" cy="120" r="1" fill="white" opacity="0.4"/><circle cx="800" cy="200" r="1" fill="white" opacity="0.4"/></svg>');
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
}


/* MAIN SECTION */
.stellar-dinner-section {
  background-color: #f9f7f3;
  padding: 120px 0;
  position: relative;
}

/* Subtitle */
.stellar-icon-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 2px;
  color: #D2A5AD;
  margin-bottom: 20px;
}

.stellar-icon-line i {
  color: #D2A5AD;
}

/* Title */
.stellar-title {
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
}

.stellar-highlight {
  color: #000000;
}

/* Paragraphs */
.stellar-desc {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  color: #425574;
  /* font-size: 18px; */
  margin-bottom: 20px;
}

.stellar-highlight-text {
  font-family: 'Lato', sans-serif;
  color: #B38B37;
  font-size: 18px;
  margin-bottom: 30px;
}

/* Button */
.stellar-btn {
  font-family: 'Lato', sans-serif;
  display: inline-block;
  padding: 15px 35px;
  background: #D2A5AD;
  color: #fff;
  font-size: 17px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

/* CARDS */
.stellar-card {
  background: rgba(255, 255, 255, 0.8);
  /* border: 2px solid #B38B37; */
  border-radius: 15px;
  padding: 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.3s;
  height: 100%;
  /* forces equal height alignment */
}

.stellar-card:hover {
  background: #D2A5AD;
  color: #fff;
}

/* Popular tag */
.stellar-popular-tag {
  font-family: 'Lato', sans-serif;
  position: absolute;
  top: -12px;
  left: 20px;
  background: #D2A5AD;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Title inside card */
.stellar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  margin-bottom: 15px;
}

/* ====================================================== */
/*                   RESPONSIVE FIXES                     */
/* ====================================================== */

/* Tablets */
@media (max-width: 991px) {
  .stellar-dinner-section {
    padding: 90px 0;
  }

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

  .stellar-desc {
    font-size: 16px;
  }

  /* Cards — ensure 2 per row tablet */
  .stellar-card {
    min-height: 240px;
    padding: 25px;
  }
}

/* Mobiles */
@media (max-width: 576px) {
  .stellar-dinner-section {
    padding: 70px 0;
  }

  .stellar-title {
    font-size: 30px;
  }

  .stellar-desc,
  .stellar-highlight-text {
    font-size: 15px;
  }

  .stellar-btn {
    font-size: 16px;
    padding: 12px 28px;
  }

  /* Card layout — each becomes full row */
  .stellar-card {
    min-height: auto;
    margin-top: 10px;
    padding: 22px;
  }

  .stellar-card h4 {
    font-size: 20px;
  }

  /* Tag reposition for mobile */
  .stellar-popular-tag {
    font-size: 13px;
    padding: 4px 16px;
    top: -10px;
  }
}




/* Section */
/* MAIN WRAPPER */
.events-wrapper {
  background: #0b1a2e;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

/* Tag */
.events-tag {
  letter-spacing: 4px;
  font-size: 14px;
  color: #D2A5AD;
  margin-bottom: 18px;
}

/* Title */
.events-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.events-title span {
  color: #D2A5AD;
}

/* Subtitle */
.events-subtext {
  font-family: 'Lato', sans-serif;
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #d4d4d4;
  line-height: 1.7;
}

/* Card Row */
.events-card-row {
  margin-top: 25px;
}

/* Card */
.events-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 42px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.35s;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  /* ensures equal card height */
}

.events-card:hover {
  transform: translateY(-10px);
  border-color: #e2bf69;
  box-shadow: 0 0 28px rgba(226, 191, 105, 0.28);
}

/* Highlighted card */
.events-card-highlight {
  border: 2px solid #e2bf69;
  box-shadow: 0 0 32px rgba(226, 191, 105, 0.35);
  background: rgba(226, 191, 105, 0.09);
}

/* Icons */
.events-icon img {
  width: 65px;
  height: 65px;
  margin-bottom: 28px;
  filter: brightness(0) invert(90%);
}

/* Card Title */
.events-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.45;
}

/* Card Text */
.events-card-text {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #cfd2d6;
  line-height: 1.7;
  margin-top: auto;
}

/* ================================================== */
/*                RESPONSIVENESS FIXED                */
/* ================================================== */

/* Tablets (2 cards per row) */
@media (max-width: 991px) {
  .events-wrapper {
    padding: 90px 0;
  }

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

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

  .events-card {
    min-height: 320px;
    padding: 35px 22px;
  }
}

/* Mobiles (1 card per row) */
@media (max-width: 576px) {
  .events-wrapper {
    padding: 70px 0;
  }

  .events-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .events-subtext {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .events-card {
    min-height: auto;
    margin-top: 10px;
    padding: 28px 18px;
  }

  .events-card-title {
    font-size: 19px;
  }

  .events-card-text {
    font-size: 15px;
  }

  .events-icon img {
    width: 58px;
    height: 58px;
  }
}



.offer-section {
  background: #ffffff;
  padding: 100px 0;
}

/* Box */
.offer-box {
  background: #f9f7f3;
  /* Updated as requested */
  border: 1px solid rgba(142, 110, 46, 0.35);
  border-radius: 22px;
  padding: 65px 45px;
  max-width: 1100px;
  margin: auto;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
}

/* Title */
.offer-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 32px;
  margin-bottom: 38px;
  font-weight: 600;
  color: #2a2a2a;
}

/* List row */
.offer-list-row {
  font-family: 'Playfair Display', serif;
  margin-bottom: 45px;
}

/* Items text */
.offer-item {

  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

/* Check icon */
.offer-check {
  color: #b79b55;
  /* A rich gold tone */
  font-size: 22px;
  margin-right: 12px;
}

/* Button */
.offer-btn {
  display: inline-block;
  padding: 15px 38px;
  border: 1px solid #b79b55;
  color: #b79b55;
  font-size: 17px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.offer-btn:hover {
  background: #D2A5AD;
  ;
  /* gold 10% opacity */
  transform: translateY(-4px);
}