/* Fondo general de la página */
.medialuz-page {
  background: linear-gradient(180deg, #060608, #0a0d12);
  color: #e8e0d6;
  font-family: Inter, sans-serif;
}

/* Contenedor principal */
.contenedor-medialuz {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Títulos */
.titulo-medialuz,
.contenedor-medialuz h2 {
  font-family: "Playfair Display", serif;
  color: #dcc9a3;
  margin-bottom: 15px;
}

/* Imagen cassette */
.cassette-img {
  float: right;
  width: 320px;
  max-width: 40%;
  border-radius: 8px;
  margin-left: 30px;
  margin-bottom: 15px;
  box-shadow: 0 0 25px rgba(217, 193, 142, 0.25);
}

/* Párrafos intro */
.intro-texto {
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Evitar colisiones con float */
.clear {
  clear: both;
}

/* Separación y estética */
.separador {
  height: 1px;
  background: rgba(217,193,142,0.3);
  border: none;
  margin: 50px 0;
}

/* Recientes / Archivo */
.recientes,
.archivo {
  margin-bottom: 40px;
}

.descripcion-recientes,
.descripcion-archivo {
  margin-bottom: 15px;
  line-height: 1.6;
}

.placeholder {
  opacity: 0.6;
  font-style: italic;
}

/* Carrusel de momentos */
.momentos {
  margin-bottom: 60px;
}

.carrusel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 15px;
  scroll-snap-type: x mandatory;
}

.item-momento {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.item-momento img {
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(217,193,142,0.25);
}

/* Modales */
.modal {
  display: none;
}

.modal:target {
  display: block;
  position: fixed;
  inset: 0;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.6);
  padding-top: 60px;
}

.modal-content {
  background: #111;
  padding: 30px;
  margin: auto;
  max-width: 600px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 30px rgba(217,193,142,0.4);
}

.modal-content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #e8e0d6;
  font-size: 38px;
  text-decoration: none;
}
