/* ═══════════════════════════════════════════════════════
   REDESIGNED PRE-WEDDING PAGE — CLEAN & FOCUSED
   ═══════════════════════════════════════════════════════ */

:root {
  --dark: #0a0a0a;
  --light: #ffffff;
  --grey: #6b7280;
  --gold: #b8860b;
  --gold-mid: #d4af37;
  --gold-lt: #f0c040;
  --gold-pale: #fef5e7;
  --border: #e5e7eb;
/*  --ff-serif: 'Georgia', serif;
  --ff-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;*/
  --shadow-sm: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── HERO SECTION ── */
.pw-hero {
  position: relative;
  height: 50vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pw-hero-bg-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pw-hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.4), rgba(10,10,10,.2));
  backdrop-filter: blur(2px);
}

.pw-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100%;
}

.pw-hero-text {
      max-width: 600px;
    color: #fff;
    animation: fadeInUp 1s ease-out;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.pw-hero-bengali {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-lt);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-align: center;
}

.pw-hero-title {
      /* font-family: var(--ff-serif); */
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    text-align: center;
    color: #f3c100;
}

.pw-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  line-height: 1.6;
  text-align: center;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.pw-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #D4A537, #C49620);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
}

.pw-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.5);
  background: linear-gradient(135deg, #E6B850, #D4A537);
}

.pw-btn-primary:active {
  transform: translateY(-1px);
}

/* ── ABOUT SECTION ── */
.pw-about {
  padding: 80px 0;
  background: var(--light);
}

.pw-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pw-about-text {
  flex: 1;
}

.pw-section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.pw-about-intro {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 32px;
}

.pw-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pw-about-feature {
  padding: 20px;
  background: var(--gold-pale);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.pw-about-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.pw-feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.pw-about-feature h4 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.pw-about-feature p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
}

.pw-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pw-stat {
  background: linear-gradient(135deg, var(--gold-pale), rgba(240,192,64,.08));
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.pw-stat-num {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.pw-stat-label {
  font-size: 0.8rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

.pw-about-image {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.pw-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── WISHLIST IMAGES SECTION ── */
.pw-wishlist {
  padding: 80px 0;
  background: var(--gold-pale);
}

.pw-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.pw-section-desc {
  font-size: 1rem;
  color: var(--grey);
  max-width: 500px;
  margin: 12px auto 0;
  line-height: 1.6;
}

.pw-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pw-wishlist-card {
  position: relative;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  group: wishlist;
}

.pw-wishlist-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pw-wishlist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pw-wishlist-card:hover .pw-wishlist-img img {
  transform: scale(1.08);
}

.pw-wishlist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent 60%);
  transition: opacity 0.3s ease;
}

.pw-wishlist-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #fff;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 2;
}

/* ── PROCESS SECTION ── */
.pw-process {
  padding: 80px 0;
  background: var(--light);
}

.pw-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.pw-step {
  position: relative;
  padding-top: 20px;
}

.pw-step-number {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(184,134,11,.2);
  line-height: 1;
  margin-bottom: 12px;
}

.pw-step-title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pw-step-desc {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}

.pw-step-connector {
  position: absolute;
  top: 24px;
  -right: 15px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-mid), transparent);
  display: none;
}

.pw-step:not(:last-child) .pw-step-connector {
  display: block;
}

/* ── GALLERY SECTION ── */
.pw-gallery {
  padding: 80px 0;
  background: var(--gold-pale);
}

.pw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pw-gallery-item {
  position: relative;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.pw-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pw-gallery-item:hover img {
  transform: scale(1.1);
}

.pw-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pw-gallery-item:hover .pw-gallery-overlay {
  opacity: 1;
}

.pw-gallery-location {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── CTA SECTION ── */
.pw-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fef5e7 0%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

.pw-cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: 
    radial-gradient(circle at 20% 50%, #d4af37 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, #f0c040 0%, transparent 50%);
  pointer-events: none;
}

.pw-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pw-cta-ornament {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.pw-cta-star {
  font-size: 1.8rem;
  display: block;
}

.pw-cta-bengali {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: #d4af37;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.pw-cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.pw-cta-text {
  font-size: 1.05rem;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 40px;
}

.pw-cta-actions {
  margin-bottom: 32px;
}

.pw-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #20c997;
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(32,201,151,.3);
  text-transform: uppercase;
}

.pw-cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(32,201,151,.4);
  background: #1ba87f;
}

.pw-cta-phones {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.pw-phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(212,175,55,.15);
  border: 2px solid #d4af37;
  color: #8b5a0f;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pw-phone-icon {
  font-size: 1.1rem;
}

.pw-phone-pill:hover {
  background: #d4af37;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,.25);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pw-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pw-about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .pw-wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pw-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .pw-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .pw-hero {
    height: 70vh;
  }

  .pw-hero-title {
    font-size: 2.4rem;
  }

  .pw-about-features {
    grid-template-columns: 1fr;
  }

  .pw-about-stats {
    grid-template-columns: 1fr;
  }

  .pw-wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pw-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pw-gallery-item {
    height: 200px;
  }

  .pw-process-steps {
    grid-template-columns: 1fr;
  }

  .pw-step-connector {
    display: none;
  }

  .pw-cta-title {
    font-size: 2rem;
  }

  .pw-cta-phones {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .pw-hero-title {
    font-size: 1.8rem;
  }

  .pw-wishlist-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pw-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pw-gallery-item {
    height: 240px;
  }

  .pw-section-title {
    font-size: 1.6rem;
  }

  .pw-cta-section {
    padding: 60px 0;
  }

  .pw-cta-title {
    font-size: 1.8rem;
  }

  .pw-cta-text {
    font-size: 0.95rem;
  }

  .pw-cta-whatsapp {
    width: 100%;
    padding: 13px 24px;
    font-size: 0.85rem;
  }

  .pw-cta-phones {
    flex-direction: column;
  }

  .pw-phone-pill {
    width: 100%;
    justify-content: center;
  }
}

