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


/* ===== AJUSTE GLOBAL PARA FOOTER ===== */
html, body {
  height: 100%;
}

body {
  margin: 0;
  background: #fffffe;
  font-family: 'Poppins', sans-serif;
  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* ===== FRANJA 1 (TÍTULO) ===== */
.top-bar {
  background: #e89bb0;
  padding: 60px 10px;
  text-align: center;
}

.top-bar h1 {
  margin: 0;
  color: #fffffe;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  letter-spacing: 3px;
}


/* ===== FRANJA 2 (MENÚ) ===== */
.menu-bar {
  background: #d07a91;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 12px 10px;

  /* 🔧 añadido para evitar problemas con más enlaces */
  flex-wrap: wrap;
}

.menu-bar a {
  color: #fffffe;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
}

.menu-bar a:hover {
  opacity: 0.7;
}


/* ===== CONTENIDO ===== */
.content {
  text-align: center;
  padding: 40px 20px;

  flex: 1;
}

.content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #333;
}

.content p {
  color: #666;
  font-size: 16px;
}


/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #888;
  background: #fffffe;
  margin-top: 40px;
}


/* =====================================================
   🔥 GALERÍA NUEVA (AÑADIDA SIN TOCAR NADA ORIGINAL)
===================================================== */

.galeria-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.card-galeria {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-galeria:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.card-galeria img {
  width: 100%;
  display: block;
  cursor: pointer;
}

.card-galeria h3 {
  margin: 12px 0 5px;
  font-family: 'Playfair Display', serif;
  color: #333;
  padding: 0 10px;
}

.card-galeria p {
  margin: 0 0 15px;
  padding: 0 10px;
  font-size: 14px;
  color: #777;
}


/* RESPONSIVE GALERÍA */

@media (min-width: 600px) {
  .galeria-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .galeria-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* LIGHTBOX (ZOOM IMAGEN) */

#lightbox-v2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox-v2 img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
