/* =========================================
   WEDDING SECTION – CLEAN VERSION
========================================= */

.wedding-highlight {
  position: relative;
  padding: 40px 0;
  background: #fff4f1;   /* Solid romantic blush */
  overflow: hidden;
}


/* ================= HEADING ================= */

.wedding-text h2 {
  font-size: 42px;
  font-family: 'Playfair Display', serif;
  color: #4a2e2e;
  margin-bottom: 20px;
}

/* ================= LAYOUT ================= */

.wedding-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.wedding-text {
  flex: 1;
}

.wedding-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #6d5c5c;
  margin-bottom: 30px;
}

/* ================= BUTTON ================= */

.wedding-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: #e89cae;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.wedding-btn:hover {
  background: #d86d86;
}

/* ================= IMAGE FRAME ================= */

.wedding-image-frame {
  position: relative;
  flex: 1;
  background: white;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.wedding-image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* GOLD CORNER ACCENT */

.wedding-image-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 120px;
  height: 120px;
  border-top: 6px solid #a66a00;
  border-left: 6px solid #a66a00;
}

/* ================= FLORAL DECORATIONS ================= */

.floral {
  position: absolute;
  width: 260px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.floral-top-left {
  top: 0;
  left: 0;
}

.floral-bottom-right {
  bottom: 0;
  right: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

  .wedding-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .wedding-text h2 {
    font-size: 30px;
  }

  .wedding-image-frame img {
    height: 300px;
  }

}

@media (max-width: 600px) {

  .wedding-highlight {
    padding: 100px 20px;
  }

  .wedding-text p {
    font-size: 16px;
  }

  .wedding-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

}
