/* Estilos generales con fondo floral profesional */
@import url('https://fonts.googleapis.com/css2?family=Prata&family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  background: url('/assets/img/fondo-floral.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  color: #333;
}

/* Menú transparente */
nav.navbar {
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Marco floral en página inicial */
.marco-boda {
  position: relative;
  max-width: 420px;
  margin: 3rem auto;
  background-color: transparent !important;
}

.img-marco {
  width: 100%;
  height: auto;
}

.contenido-marco {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Prata', serif;
  color: #333;
  background-color: transparent;
}

/* Footer fijo abajo */
html, body {
  height: 100%;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Footer transparente */
footer {
  padding: 1rem;
  text-align: center;
  color: #555;
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(0,0,0,0.1);
}