/* ============================================
   Watercolor & Organic Shape Theme - No Crop Version
   ============================================ */

:root{
  --bg: #fdf8f5;
  --bg-alt: #f7f1ed;
  --text: #3e3a36;
  --text-muted: #7a756f;
  --primary: #d4a373;
  --primary-dark: #b8885c;
  --accent: #faedcd;
  --white: #ffffff;
  --radius: 24px;
  --radius-lg: 40px;
  --shadow: 0 8px 30px rgba(212,163,115,0.15);
  --shadow-lg: 0 15px 50px rgba(212,163,115,0.2);
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Watercolor blobs background */
body::before,
body::after{
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: radial-gradient(circle at 30% 30%, #faedcd 0%, #fefae0 50%, transparent 70%);
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

body::before{ top: -200px; left: -200px; }
body::after{ bottom: -200px; right: -200px; background: radial-gradient(circle at 70% 70%, #e9edc9 0%, #fefae0 50%, transparent 70%); animation-delay: -10s; }

@keyframes float{
 0%, 100%{ transform: translate(0,0) rotate(0deg); }
 50%{ transform: translate(50px,50px) rotate(180deg); }
}

/* Typography */
h1, h2, h3, h4{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.hero-name,
.opening-name{
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
}

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loader */
.loader{
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s;
}

.loader.hide{
  opacity: 0;
  pointer-events: none;
}

.loader-heart{
  font-size: 3rem;
  color: var(--primary);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse{
 0%, 100%{ transform: scale(1); }
 50%{ transform: scale(1.2); }
}

/* Opening */
.opening{
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.opening-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253,248,245,0.8) 0%, rgba(253,248,245,0.95) 100%);
}

.opening-content{
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}

.opening-label{
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.opening-name{
  color: var(--primary-dark);
  margin: 20px 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.guest-name{
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 10px 0;
}

.btn-primary{
  margin-top: 25px;
  padding: 14px 40px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  font-family: 'Outfit', sans-serif;
}

.btn-primary:hover{
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Main Content */
.hidden-content{ display: none; }
.hidden-content.show{ display: block; }

/* Floating Nav */
.floating-nav{
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.floating-nav ul{
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  padding: 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  list-style: none;
}

.floating-nav a{
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.3s;
  text-decoration: none;
}

.floating-nav a.active,
.floating-nav a:hover{
  background: var(--primary);
  color: var(--white);
}

/* Sections */
.section{
  padding: 100px 0;
  position: relative;
}

.section-alt{
  background: var(--bg-alt);
}

.section-head{
  text-align: center;
  margin-bottom: 60px;
}

.section-tag{
  display: inline-block;
  padding: 6px 20px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-head h2{
  margin: 15px 0;
  color: var(--primary-dark);
  font-size: clamp(2rem, 5vw, 3rem);
}

.section-desc{
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-note{
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 50px;
  font-size: 1.1rem;
}

/* Hero */
.hero{
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg);
}

.hero-gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 90%);
}

.hero-content{
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.6);
}

.hero-label{
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-name{
  color: var(--primary-dark);
  margin: 20px 0;
  font-size: clamp(3rem, 8vw, 6rem);
}

.hero-name span{
  font-family: 'Outfit', sans-serif;
  font-size: 0.6em;
}

.scroll-hint{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--primary-dark);
  font-size: 1.5rem;
}

@keyframes bounce{
 0%, 100%{ transform: translateX(-50%) translateY(0); }
 50%{ transform: translateX(-50%) translateY(-10px); }
}

/* Couple */
.couple-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.couple-card{
  text-align: center;
}

.couple-frame{
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 25px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  background: var(--accent);
}

.couple-frame img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.couple-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  font-size: 4rem;
  color: var(--primary-dark);
  font-family: 'Playfair Display', serif;
}

.couple-name{
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.parent{
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ig-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.3s;
}

.ig-link:hover{
  color: var(--primary);
}

.couple-divider{
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--primary);
}

.couple-divider span{
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Quote */
.quote-box{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.quote-box i{
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  top: 20px;
  left: 30px;
}

.quote-box p{
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text);
}

.quote-box span{
  display: block;
  margin-top: 20px;
  color: var(--text-muted);
}

/* Event Cards */
.event-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card{
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(212,163,115,0.2);
}

.event-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.event-icon{
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  font-size: 1.8rem;
}

.event-card h4{
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.time{
  font-weight: 600;
  margin-bottom: 15px;
}

.location{
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-outline{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover{
  background: var(--primary);
  color: var(--white);
}

/* Countdown */
.countdown-section{
  text-align: center;
  margin-bottom: 60px;
}

.countdown-label{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.countdown{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item{
  background: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 90px;
}

.countdown-number{
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
}

.countdown-label-small{
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Streaming */
.streaming-wrapper{
  max-width: 900px;
  margin: 0 auto;
}

.streaming-header{
  text-align: center;
  margin-bottom: 40px;
}

.live-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e63946;
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.live-dot{
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink{
 0%, 100%{ opacity: 1; }
 50%{ opacity: 0.3; }
}

.streaming-card{
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.streaming-embed{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.streaming-embed iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Story Timeline */
.timeline{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before{
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.timeline-item{
  position: relative;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

.timeline-dot{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-card{
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 45%;
  margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-card{
  margin-left: 0;
  margin-right: 55%;
}

.story-img{
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.timeline-date{
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.timeline-card h4{
  color: var(--primary-dark);
  margin: 10px 0;
}

/* Gallery Swiper - No Crop */
.gallery-swiper{
  padding: 20px 0;
}

.gallery-item{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.gallery-item img{
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: var(--bg-alt);
  transition: transform 0.5s;
}

.gallery-item:hover img{
  transform: scale(1.02);
}

.swiper-button-prev,
.swiper-button-next{
  color: var(--primary);
}

.swiper-pagination-bullet-active{
  background: var(--primary);
}

/* ===== RSVP - FIXED ===== */
.section-rsvp{
  padding: 100px 0;
  background: var(--bg-alt);
}

.rsvp-content{
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.rsvp-title{
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.rsvp-desc{
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.rsvp-form{
  background: var(--white);
  padding: 45px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: left;
  border: 1px solid rgba(212,163,115,0.15);
}

.form-group{
  margin-bottom: 22px;
}

.form-group label{
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.required{
  color: #e63946;
}

.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e4e0;
  border-radius: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(212,163,115,0.1);
}

.btn-whatsapp{
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp:hover{
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.rsvp-stats{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-box{
  flex: 1;
  min-width: 140px;
  text-align: center;
  background: var(--white);
  padding: 25px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,163,115,0.15);
}

.stat-number{
  display: block;
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.stat-label{
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Wishes ===== */
.section-wishes{
  padding: 100px 0;
}

.wishes-content{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.wishes-icon{
  text-align: center;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.wishes-title{
  text-align: center;
  margin-bottom: 15px;
}

.wishes-script{
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: var(--primary-dark);
}

.wishes-bold{
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-left: 10px;
}

.wishes-desc{
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.wishes-form{
  max-width: 600px;
  margin: 40px auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,163,115,0.15);
}

.wishes-form input,
.wishes-form textarea{
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e4e0;
  border-radius: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  margin-bottom: 18px;
}

.wishes-form input:focus,
.wishes-form textarea:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(212,163,115,0.1);
}

.btn-submit-wish{
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}

.btn-submit-wish:hover{
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.wishes-list{
  max-height: 500px;
  overflow-y: auto;
  padding-right: 8px;
}

.wish-item{
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  text-align: left;
  border: 1px solid rgba(212,163,115,0.1);
}

.wish-head{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.wish-avatar{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 600;
  flex-shrink: 0;
}

.wish-info strong{
  display: block;
  color: var(--text);
}

.wish-info small{
  color: var(--text-muted);
  font-size: 0.85rem;
}

.wish-item p{
  color: var(--text);
  line-height: 1.6;
}

.empty-wish{
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  padding: 40px 20px;
}

/* ===== Gift Cards - FIXED ===== */
.section-gift{
  padding: 100px 0;
  background: var(--bg-alt);
}

.gift-head{
  text-align: center;
  margin-bottom: 50px;
}

.gift-head h2{
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.gift-head p{
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.gift-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.gift-card-dark{
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(212,163,115,0.15);
  transition: all 0.3s;
}

.gift-card-dark:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gift-card-header{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.gift-logo{
  height: 40px;
  object-fit: contain;
}

.gift-card-body{
  text-align: center;
}

.gift-number{
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
  word-break: break-all;
}

.gift-name{
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-copy-dark{
  padding: 12px 28px;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-copy-dark:hover{
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer */
.footer{
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-alt);
  color: var(--text-muted);
}

.footer h3{
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-top: 10px;
}

/* Music Button */
.music-btn{
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: all 0.3s;
}

.music-btn:hover{
  transform: scale(1.1);
}

.music-btn.playing{
  animation: spin 3s linear infinite;
}

@keyframes spin{
  to{ transform: rotate(360deg); }
}

/* Alert */
.alert{
  padding: 15px 20px;
  border-radius: 15px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.alert.success{
  background: #d4edda;
  color: #155724;
}

.alert.error{
  background: #f8d7da;
  color: #721c24;
}

.hidden{
  display: none;
}

/* Reveal Animation */
.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}

.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media(max-width: 768px){
  .couple-grid{
    grid-template-columns: 1fr;
  }
  
  .couple-divider{
    display: none;
  }
  
  .floating-nav{
    display: none;
  }
  
  .countdown{
    gap: 10px;
  }
  
  .countdown-item{
    min-width: 70px;
    padding: 15px;
  }
  
  .countdown-number{
    font-size: 1.8rem;
  }
  
  .timeline::before{
    left: 25px;
  }
  
  .timeline-dot{
    left: 25px;
  }
  
  .timeline-card,
  .timeline-item:nth-child(even) .timeline-card{
    width: calc(100% - 70px);
    margin-left: 70px;
    margin-right: 0;
  }
  
  .opening-content,
  .hero-content{
    padding: 30px 20px;
  }
  
  .rsvp-form,
  .wishes-form{
    padding: 30px 25px;
  }
  
  .gift-list{
    grid-template-columns: 1fr;
  }
  
  .rsvp-stats{
    flex-direction: column;
  }
  
  .stat-box{
    min-width: 100%;
  }
}

@media(max-width: 480px){
  .section{
    padding: 70px 0;
  }
  
  .floating-nav{
    bottom: 15px;
    padding: 5px;
    border-radius: 25px;
  }
  
  .nav-icon{
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  
  .countdown{ gap: 10px; }
  .countdown-item{ min-width: 70px; padding: 15px; }
  .countdown-number{ font-size: 28px; }
  
  .music-btn{
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .timeline{ padding-left: 50px; }
  .timeline-dot{ left: -50px; width: 32px; height: 32px; font-size: 14px; }
  .timeline-card{ padding: 25px 20px; }
  .timeline-card h4{ font-size: 24px; }
  
  .gift-number{ font-size: 1.1rem; }
  .gift-card-dark{ padding: 25px 20px; }
  
  .opening-name{ font-size: 2.2rem; }
  
  .couple-frame{
    max-width: 240px;
  }
  
  .rsvp-form,
  .wishes-form{
    padding: 25px 20px;
  }
}

/* Key fix: no crop for all images */
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* Special: gallery and couple images use contain to prevent crop */
.gallery-item img,
.couple-frame img,
.story-img{
  object-fit: contain;
  background: var(--bg-alt);
}