/* ============================================
   LUXURY HOLIDAY SECTION — PARALLAX SAFE VERSION
============================================== */

.holiday-luxury,
#holiday {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 50px;
  background: #f7f3ee;
  flex-wrap: wrap; /* Mobile will stack */
  width: 100%;
  position: relative;
  z-index: 10;
}

/* ------------------------------
   CARD BASE (Glassmorphism)
------------------------------ */
.lux-card {
  width: 620px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(15px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.lux-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.14);
}

/* ------------------------------
   IMAGE WRAPPER — SAFE FOR PARALLAX
------------------------------ */
.lux-img-wrap {
  position: relative;
  width: 100%;
  height: 320px; /* stable height */
  overflow: hidden; /* prevents overflow */
  border-radius: 22px 22px 0 0;
  flex-shrink: 0; /* prevent width collapsing */
  background: #eee;
}

/* The image itself moves in parallax */
.lux-img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.2s ease-out;
  will-change: transform;
  pointer-events: none;
}

/* ------------------------------
   FLOATING RIBBON — Optimized
------------------------------ */
.lux-ribbon {
  position: absolute;
  top: -80px;
  left: -100px;
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, #55ffcf50, #ffffff10);
  border-radius: 50%;
  filter: blur(40px);
  animation: ribbonFloat 6s ease-in-out infinite alternate;
}

@keyframes ribbonFloat {
  from {
    transform: translateY(0) rotate(35deg);
  }
  to {
    transform: translateY(30px) rotate(35deg);
  }
}

/* ------------------------------
   TEXT AREA — Clean & Stable
------------------------------ */
.lux-text {
  padding: 30px 32px 40px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
}

.lux-text h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}

.lux-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}

/* ------------------------------
   BUTTONS
------------------------------ */
.lux-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.25s ease;
}

.lux-btn:hover {
  transform: translateY(-3px);
  background: #333;
}

.lux-btn.dark {
  background: #222;
}

/* ------------------------------
   REVEAL ANIMATION
------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay {
  transition-delay: 0.2s;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 900px) {
  .lux-card {
    width: 100%;
  }

  .lux-img-wrap {
    height: 300px;
  }
}
