@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-dark: #4B0082;
  --purple-light: #D291BC;
  --white-trans: rgba(255, 255, 255, 0.8);
  --accent-pink: #E1BEE7;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
  color: #FFF;
  line-height: 1.6;
  min-height: 100vh;
  animation: fadeInBG 1s ease forwards;
}

.container {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0;
}

header {
  text-align: center;
  margin-bottom: 30px;
}
header h1 {
  font-size: 2.2em;
  color: #FFF;
  font-weight: 700;
  animation: slideDown 0.8s ease-out;
}
header p {
  font-size: 1em;
  color: var(--accent-pink);
  margin-top: 10px;
  animation: fadeInText 1s ease 0.5s forwards;
  opacity: 0;
}

.celebracion {
  background: var(--white-trans);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  animation: popIn 0.8s ease 0.2s forwards;
  opacity: 0;
}
.celebracion h2 {
  font-size: 1.8em;
  color: var(--purple-dark);
  margin-bottom: 10px;
}
.celebracion p {
  font-size: 1em;
  color: #000000;
}

.fotos-nosotros {
  position: relative;
  width: 100%;
  height: 300px; /* Ajusta la altura según tus imágenes */
  overflow: hidden;
  margin-bottom: 25px;
}

.fotos-nosotros img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: carousel 32s infinite;
}

.fotos-nosotros img:nth-child(1) { animation-delay: 0s; }
.fotos-nosotros img:nth-child(2) { animation-delay: 4s; }
.fotos-nosotros img:nth-child(3) { animation-delay: 8s; }
.fotos-nosotros img:nth-child(4) { animation-delay: 12s; }
.fotos-nosotros img:nth-child(5) { animation-delay: 16s; }
.fotos-nosotros img:nth-child(6) { animation-delay: 20s; }
.fotos-nosotros img:nth-child(7) { animation-delay: 24s; }
.fotos-nosotros img:nth-child(8) { animation-delay: 28s; }

@keyframes carousel {
  0%, 12.5% { opacity: 1; }
  25%, 100% { opacity: 0; }
}

.fotos-completas {
  margin-bottom: 25px;
}
.fotos-completas img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
  animation: fadeInImage 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInBG {
  from { background-position: 0 0; }
  to { background-position: 100% 100%; }
}
@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInText {
  to { opacity: 1; }
}
@keyframes popIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInImage {
  to { opacity: 1; }
}

.banner {
  background: var(--purple-dark);
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
}
.banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8em;
  color: #FFF;
  margin: 0;
  letter-spacing: 1px;
}

.celebracion p {
  color: #333333; /* Texto oscuro sobre fondo claro */
}
