 body {
      margin: 0;
    }

    .hero {
      min-height: 100vh;
       background:
    linear-gradient(135deg, rgba(15,15,15,0.85), rgba(28,28,28,0.65)),
    url("../backMobile.jpg") center / cover no-repeat;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .names {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 8vw, 6rem);
      letter-spacing: 2px;
    }

    .date {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.25rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-top: 1rem;
      opacity: 0.85;
    }

    .countdown {
      margin-top: 2rem;
      display: flex;
      gap: 2rem;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
    }

    .countdown div {
      text-align: center;
    }

    .countdown span {
      font-size: 2.5rem;
      font-weight: 300;
      display: block;
    }

    .countdown small {
      font-size: 0.75rem;
      letter-spacing: 2px;
      opacity: 0.7;
    }
.names {
  line-height: 1.1;
}

.hero-content {
  animation: fadeUp 1.8s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.moment {
  min-height: 100vh;
  background: #f8f9fa;
  color: #111;
}

.moment-text {
  max-width: 800px;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.6;
}

.moment-text p {
  margin-bottom: 1.5rem;
}

.moment-text .highlight {
  font-weight: 400;
  margin-top: 2.5rem;
}
.moment {
  animation: fadeIn 1.5s ease-out both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.details {
  min-height: 100vh;
  background: #111;
  color: #fff;
}

.details h2 {
  font-weight: 400;
  letter-spacing: 1px;
}

#map, #map-reception {
  width: 100%;
  height: 60vh;
  border-radius: 16px;
  overflow: hidden;
}

/* Desktop gets a bit more height */
@media (min-width: 768px) {
  #map, #map-reception {
    height: 70vh;
  }
}
.col-md-7.fade-in {
  transition-delay: 0.2s;
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.transition {
  min-height: 40vh;
  background: #f8f9fa;
  color: #111;
}

.transition-text {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 300;
  opacity: 0.8;
}
.playlist {
  min-height: 100vh;
  background: #111;
  color: #fff;
}

.playlist-embed {
  max-width: 500px;
}
.personal {
  min-height: 100vh;
  background: #f8f9fa;
  color: #111;
}

.personal h2 {
  font-weight: 400;
}

.personal p {
  font-weight: 300;
}
.closing {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(15,15,15,0.85), rgba(28,28,28,0.65)),
    url("../img-moment-1.jpg") center / cover no-repeat;
  color: #fff;
}

.closing-text {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
}
.polaroid-wrapper {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.polaroid {
  width: 240px;
  background: #fff;
  padding: 12px 12px 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transform: rotate(-3deg);
}

.polaroid img {
  width: 100%;
  display: block;
}

.ornament {
  width: 120px;
  height: 50px;
  margin: 40px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.6;
}

.ornament-top {
  background-image: url("../ornament.svg");
}

.ornament-bottom {
  background-image: url("../ornament.svg");
  transform: rotate(180deg);
}

