body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: url('img/fondo.jpg') center/cover no-repeat;
  margin-bottom: 80px;
}

.section {
  height: 86vh;
  width: 80vw;
  margin-left: 10vw;
  margin-top: 7vh;
  color: white;
  position: relative;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.section .invitation-card {
  text-shadow: none;
}

.section .content {
  max-width: 800px;
  padding: 20px;
}

.section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
}

.section p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Fondos de ejemplo (reemplazar con collages propios) */
.bg1 { background: url('img/bg1.jpg') center/cover no-repeat; }
.bg2 { background: url('img/bg2.jpg') center/cover no-repeat; }
.bg3 { background: url('img/bg3.jpg') center/cover no-repeat; }
.bg4 { background: url('img/bg4.jpg') center/cover no-repeat; }
.bg5 { background: url('img/bg5.jpg') center/cover no-repeat; }
.bg6 { background: url('img/bg6.jpg') center/cover no-repeat; }

/* Invitación final estilo tarjeta */
.invitation-card {
  background: #fff;
  color: #333;
  border: 3px solid gold;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  font-family: 'Playfair Display', serif;
}

.invitation-card .names {
  font-size: 2.5rem;
  font-weight: 600;
  color: #b38b00;
}

.invitation-card .intro {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.invitation-card .footer {
  font-style: italic;
  color: #555;
}

/* Animaciones */
.animate {
  opacity: 0;
  transform: translateY(50px);
}