/* =============================================================
   MANNAT — WEDDINGS PAGE (FIXED & STABLE)
   ============================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f7f2eb;
  font-family: 'Montserrat', sans-serif;
  color: #222;
  overflow-x: hidden;
}

/* =============================================================
   HERO CAROUSEL
   ============================================================= */

.hero-carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0 40px;
  background-color: #f7f2eb;
}

.carousel-container {
  position: relative;
  width: 68%;
  max-width: 1400px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
}

.carousel-slide {
  display: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

/* ---------- HERO ARROWS ---------- */

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 14px;
  font-size: 26px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.45);
}

.prev { left: 20px; }
.next { right: 20px; }

/* =============================================================
   INTRO TEXT
   ============================================================= */

.intro-text {
  text-align: center;
  padding: 20px 0 40px; /* FIXED */
  background-color: #f7f2eb;
}

.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.intro-text p {
  max-width: 750px;
  margin: 0 auto 15px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.intro-text .bottom-line {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 15px;
}

/* =============================================================
   GALLERY CAROUSEL (SIZE UNCHANGED)
   ============================================================= */

.gallery-carousel {
  position: relative;
  width: 82%;
  max-width: 1650px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #f7f2eb;
  padding: 30px 0 60px;
}

.gallery-track {
  display: flex;
  align-items: center;
  width: max-content;
  transition: transform 0.8s ease;
}

.gallery-slide {
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center;
  display: block; /* FIXES WHITE LINES */
}

/* ---------- GALLERY ARROWS ---------- */

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
  background-color: rgba(0, 0, 0, 0.45);
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

/* =============================================================
   REAL LOVE STORIES
   ============================================================= */

.love-stories {
  text-align: center;
  padding: 40px 0 0; /* FIXED */
  background-color: #f7f2eb;
}

.love-stories h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.love-stories .subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.story-item img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.story-item img:hover {
  transform: scale(1.03);
}

.story-item .caption {
  font-size: 11px;
  letter-spacing: 2px;
  color: #444;
  margin-top: 10px;
}

/* =============================================================
   HANDLE
   ============================================================= */

.love-stories .handle {
  display: block;
  text-align: right;
  margin-top: 80px;
  font-size: 13px;
  letter-spacing: 2px;
  color: #444;
  padding-right: 30px;
  padding-bottom: 30px;
}

/* =============================================================
   RESPONSIVE DESIGN (LOGIC PRESERVED)
   ============================================================= */

@media (max-width: 992px) {
  .carousel-container {
    width: 80%;
    aspect-ratio: 4 / 3;
  }

  .gallery-slide img {
    height: 60vh;
  }

  .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .carousel-container {
    width: 95%;
    aspect-ratio: 4 / 3;
  }

  .intro-text h2 {
    font-size: 26px;
  }

  .intro-text p {
    font-size: 13.5px;
  }

  .gallery-slide img {
    height: 50vh;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-item {
    width: 90%;
    margin: 0 auto;
  }

  .love-stories h2 {
    font-size: 20px;
  }
}
