/* Wedding Ceremony Section (Simplified Layout) */
.wedding-ceremony-section {
  padding: 3vw 40px;
  background-color: #fcfbf7;
}

.wedding-ceremony-section .container {
  padding: 0;
}

.wedding-ceremony-container {
  width: 100%;
}

/* Header & Divider */
.wedding-header {
  text-align: center;
  margin-bottom: 40px;
}
.wedding-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #1b2a41;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.wedding-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.wedding-divider .line {
  width: 50px;
  height: 1px;
  background-color: #ccc;
}
.wedding-divider .icon {
  color: #a0a0a0;
  font-size: 18px;
}

/* Intro Text */
.wedding-intro {
  /* max-width: 1000px; */
  margin: 0 auto 50px auto;
  text-align: center;
}
.wedding-intro p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.wedding-intro p strong {
  color: #333;
  font-weight: 600;
}

/* Split Content (Slider and Features) */
.wedding-split-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left Side: Slider */
.wedding-slider {
  flex: 1;
}
.main-slide {
  position: relative;
  margin-bottom: 15px;
}
.main-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  /* border-radius: 4px; */
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}
.slider-nav:hover {
  background-color: #e3a976;
}
.slider-nav.prev {
  left: 10px;
}
.slider-nav.next {
  right: 10px;
}
.thumbnail-row {
  display: flex;
  gap: 10px;
}
.thumbnail-row img {
  width: calc(20% - 8px);
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}
.thumbnail-row img:hover, .thumbnail-row img.active {
  opacity: 1;
  border: 2px solid #e3a976;
}

/* Right Side: Features */
.wedding-right-content {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wedding-feature h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #1b2a41;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wedding-feature p,
.wedding-feature ul {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}
.wedding-feature ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 15px;
}
.wedding-feature ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0;
}
.wedding-feature ul li::before {
  content: "◇"; /* Diamond bullet */
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -2px;
  color: #e3a976;
  font-weight: bold;
}

/* =========================================
   Tablet Responsive (max-width: 900px)
   ========================================= */
@media (max-width: 900px) {
  /* --- Split Content Section --- */
  .wedding-split-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .wedding-right-content {
    width: 100%;
  }
  
  .wedding-slider {
    width: 100%;
  }
}

/* =========================================
   Mobile Responsive (max-width: 600px)
   ========================================= */
@media (max-width: 600px) {
  /* --- Main Section --- */
  .wedding-ceremony-section {
    padding: 3rem 15px;
  }
  
  /* --- Header & Intro --- */
  .wedding-header h2 {
    font-size: 24px;
  }
  
  .wedding-intro p {
    font-size: 14px;
  }
  
  /* --- Right Side Features --- */
  .wedding-feature h3 {
    font-size: 18px;
  }
  
  .wedding-feature p {
    font-size: 14px;
  }
  
  .wedding-feature ul {
    grid-template-columns: 1fr;
    row-gap: 10px;
    font-size: 14px;
  }
}
