*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
body{
  background:linear-gradient(180deg,#fffaf8,#fff1ef);
  overflow-x:hidden;
  color:#333;
}

/* HEARTS */
.hearts-bg{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.hearts-bg span{
  position:absolute;
  bottom:-40px;
  font-size:18px;
  opacity:.35;
  animation:floatHeart linear infinite;
}
@keyframes floatHeart{
  0%{transform:translateY(0) scale(.6);opacity:0}
  15%{opacity:.4}
  100%{transform:translateY(-120vh) scale(1.4);opacity:0}
}

/* HERO */
.hero{
  height:100vh;
  background:
    linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.8)),
    url('images/hero.png') center/cover no-repeat;
  display:flex;
  align-items:flex-end;   /* 👈 bottom */
  justify-content:center; /* center horizontally */
  padding-bottom:40px;    /* thoda upar gap */
}
.hero-content{
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(10px);
  padding:40px;
  border-radius:26px;
  box-shadow:0 20px 60px rgba(0,0,0,.6);
}
.hero h1{
  font-family:'Playfair Display';
  font-size:72px;
  color:#fff;
}
.hero-line{color:#fff;font-size:18px;margin:8px 0}
.hero h3{color:#fff;margin-bottom:10px}

.hero-quotes p{
  color:#fff;
  font-style:italic;
  margin-top:10px;
  font-size:15px;
}

/* SECTIONS */
.section{
  padding:80px 20px;
  text-align:center;
  position:relative;
  z-index:1;
}
.bg{background:#fff6f3}

.section-title{
  font-size:36px;
  color:#5a2f33;
  margin-bottom:20px;
}
.section-quote{
  max-width:800px;
  margin:0 auto 50px;
  font-size:18px;
  font-style:italic;
  color:#8a5b5f;
}

/* COUPLE */
.couple{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}
.card{
  background:linear-gradient(180deg,#fff,#fff1ef);
  border-radius:22px;
  padding:25px;
  max-width:320px;
  box-shadow:0 20px 50px rgba(183,110,121,.3);
  transition:.4s;
}
.card:hover{transform:translateY(-12px)}
.card img{width:100%;border-radius:18px}
.card h3{margin-top:15px;color:#5a2f33}
.card p{color:#7a4a4e}
.card-quote{
  display:block;
  margin-top:10px;
  font-style:italic;
  color:#b76e79;
}
.love-quotes p{
  margin-top:12px;
  font-size:18px;
  color:#7a4a4e;
}

/* EVENTS */
.events{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}
.event{
  background:linear-gradient(135deg,#fff,#ffe9ec);
  padding:28px;
  border-radius:22px;
  display:flex;
  gap:20px;
  box-shadow:0 15px 40px rgba(183,110,121,.25);
}
.icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(180deg,#f7b6c2,#b76e79);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  color:#fff;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:14px;
}
.gallery img{width:100%;border-radius:16px}
.gallery-quotes p{
  margin-top:20px;
  font-style:italic;
  color:#7a4a4e;
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:14px 30px;
  background:#b76e79;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
}

/* MUSIC */
.music-btn{
  position:fixed;
  bottom:20px;
  right:20px;
  font-size:20px;
  padding:14px;
  border-radius:50%;
  border:none;
  z-index:999;
}

/* OVERLAY */
#tapOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.tap-box{
  background:#fff;
  padding:24px 40px;
  border-radius:18px;
  font-size:22px;
  animation:pulse 1.5s infinite;
}
@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

footer{
  padding:20px;
  background:#111;
  color:#fff;
}
.footer-quote{
  font-style:italic;
  color:#ccc;
}
.story-section{
  background:
    radial-gradient(circle at top left, rgba(255,220,220,0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255,200,200,0.35), transparent 60%);
}

.story-card{
  max-width:820px;
  margin:0 auto;
  background:rgba(255,255,255,0.85);
  padding:40px 45px;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(183,110,121,0.25);
  backdrop-filter:blur(6px);
}

.story-card p{
  font-size:18px;
  line-height:1.8;
  color:#5a2f33;
  margin-bottom:20px;
}

.story-highlight{
  font-style:italic;
  color:#b76e79;
  font-size:19px;
}
.rsvp-section{
  background:
    radial-gradient(circle at top, rgba(255,210,210,0.4), transparent 60%),
    radial-gradient(circle at bottom, rgba(255,190,190,0.35), transparent 60%);
}

.rsvp-card{
  max-width:850px;
  margin:0 auto;
  background:rgba(255,255,255,0.9);
  padding:50px 45px;
  border-radius:28px;
  box-shadow:0 25px 60px rgba(183,110,121,0.3);
  backdrop-filter:blur(8px);
}

.rsvp-text{
  font-size:26px;
  font-family:'Playfair Display', serif;
  color:#5a2f33;
  line-height:1.6;
  margin-bottom:25px;
}

.rsvp-subtext{
  font-size:18px;
  color:#7a4a4e;
  line-height:1.8;
  margin-bottom:35px;
}

.rsvp-btn{
  font-size:18px;
  padding:16px 36px;
  border-radius:40px;
}
.quote-slider{
  margin-top:18px;
  min-height:40px;
}

#quoteText{
  font-size:18px;
  font-style:italic;
  color:rgba(255,255,255,0.95);
  letter-spacing:.4px;
  animation:fadeQuote .6s ease;
}

@keyframes fadeQuote{
  from{opacity:0;transform:translateY(6px)}
  to{opacity:1;transform:translateY(0)}
}
.vows-section{
  background:
    radial-gradient(circle at top left, rgba(255,220,220,0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255,200,200,0.35), transparent 60%);
}

.vows{
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.vow-card{
  max-width:380px;
  background:rgba(255,255,255,0.9);
  padding:35px 30px;
  border-radius:26px;
  box-shadow:0 25px 60px rgba(183,110,121,0.3);
  backdrop-filter:blur(6px);
  transition:.4s;
}

.vow-card:hover{
  transform:translateY(-10px);
}

.vow-card h3{
  font-family:'Playfair Display';
  color:#5a2f33;
  font-size:24px;
  margin-bottom:14px;
}

.vow-card p{
  font-size:17px;
  line-height:1.8;
  font-style:italic;
  color:#7a4a4e;
}
.calendar-btn{
  margin-top:18px;
  background:linear-gradient(180deg,#4caf50,#2e7d32);
  box-shadow:0 12px 30px rgba(46,125,50,0.35);
  font-size:16px;
}

.calendar-btn:hover{
  transform:translateY(-2px);
}
.rsvp-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.venue-section{
  background:
    radial-gradient(circle at top, rgba(255,220,220,0.35), transparent 60%),
    radial-gradient(circle at bottom, rgba(255,200,200,0.35), transparent 60%);
}

.venue-card{
  max-width:900px;
  margin:0 auto;
  background:rgba(255,255,255,0.9);
  padding:40px;
  border-radius:28px;
  box-shadow:0 25px 60px rgba(183,110,121,0.3);
}

.venue-card h3{
  font-size:26px;
  color:#5a2f33;
  margin-bottom:8px;
}

.venue-address{
  font-size:16px;
  color:#7a4a4e;
}

.venue-landmark{
  font-size:15px;
  margin:10px 0 20px;
  color:#8a5b5f;
  font-style:italic;
}

.venue-map iframe{
  width:100%;
  height:300px;
  border:0;
  border-radius:18px;
  margin-bottom:25px;
}

.venue-btn{
  background:linear-gradient(180deg,#ff8a80,#b76e79);
}
.wedding-day{
  font-size:28px;
  color:#fff;
  font-weight:700;
  animation:pulse 1.5s infinite;
}
