/* Estilos generales */
body {
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.intro-eventos {
  height: 100vh;
  background-image: url("../assets/pastel-y-chef.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row-reverse;
}

.intro-eventos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  opacity: 0.8;
  mix-blend-mode: multiply;
}


.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin: 2rem 1rem;
  color: #8a2a3a;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

/* Contenedor principal */
.weddings-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

/* Bloques de imágenes y texto */
.wedding-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.wedding-block.reverse {
  flex-direction: column-reverse;
}

.wedding-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 8px solid #f8e1e8; /* Borde color pastel */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin: 0 auto;
}

.wedding-text {
  max-width: 500px;
  text-align: center;
  padding: 0 1rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.wedding-text h3 {
  font-size: 1.5rem;
  color: #ac6b6f;
  margin-bottom: 0.5rem;
}

.wedding-text p {
  font-size: 1rem;
  color: #555;
}

/* Responsive para tabletas y computadoras */
@media (min-width: 768px) {
  .wedding-block {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  
  .wedding-block.reverse {
    flex-direction: row-reverse;
  }
  
  .wedding-image img {
    max-width: 400px;
  }
  
  .wedding-text {
    text-align: left;
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.8rem;
  }

  .wedding-text h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .title-intro {
      width: 90%;
  }
}

@media (max-width: 768px) {
  .title-intro {
      font-size: 2.4rem;
  }
}