/* SECTION */
.luxury-occasion {
  background: #000;
  padding: 60px 0;
  text-align: center;
}

.luxury-title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 40px;
}

/* GRID */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  width: 92%;
  margin: auto;
}

/* BOX IMAGE STYLE */
.luxury-box {
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
}

/* BOTTOM 2 IMAGES SIDE BY SIDE */
.luxury-box:nth-child(4),
.luxury-box:nth-child(5) {
  grid-column: span 2 !important;  /* <-- FIXES YOUR ISSUE */
  height: 300px;
}

/* HOVER OVERLAY */
.luxury-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: .35s;
  backdrop-filter: blur(0px);
  z-index: 1;
}

.luxury-box:hover::before {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

/* TEXT */
.luxury-box h3 {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  color: #D9992F;
  opacity: 0;
  transition: .4s;
  z-index: 2;
}

.luxury-box:hover h3 {
  opacity: 1;
}

/* RESPONSIVE FIX */
@media(max-width:900px){
  .luxury-grid { grid-template-columns: 1fr 1fr; }
  .luxury-box:nth-child(4),
  .luxury-box:nth-child(5) { grid-column: span 2; }
}

@media(max-width:650px){
  .luxury-grid { grid-template-columns: 1fr; }
  .luxury-box:nth-child(4),
  .luxury-box:nth-child(5) { grid-column: span 1; }
}
