body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
}

nav {
  background-color: #111;
  padding: 10px 0;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.menu li {
  display: inline-block;
  margin: 0 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.menu a:hover {
  color: #ff4081;
}

main {
  text-align: center;
  padding: 30px 15px;
}

.logo {
  max-width: 350px;
  width: 100%;
  margin-bottom: 20px;
  /*opacity: 0.3;*/
  filter: brightness(0.7) contrast(0.9) blur(1px);
  opacity: 0.6;
}

h1 {
  /*font-size: 32px;
  color: #222;
  font-family: 'Comic Sans MS', cursive, sans-serif;*/
  font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* Sombra para resaltar */
    margin-top: 20px;
    text-align: center;
  }

  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
}

h2 {
  font-size: 26px;
  color: #333;
}

.seccion {
  display: none;
}

.seccion.activa {
  display: block;
}

.imagenes-servicios img,
.imagenes-galeria img {
  width: 300px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

input,
textarea,
button {
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
}

button {
  background-color: #111;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #444;
}

@media (max-width: 600px) {
  .menu li {
    display: block;
    margin: 10px 0;
  }

  .imagenes-servicios img,
  .imagenes-galeria img {
    width: 90%;
  }
}
body {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  font-family: Arial, sans-serif;
}

/* Fondo de pantalla */
.fondo-pagina {
  background-image: url('img/logofiesta2.jpg'); /* Cambia por la ruta correcta de tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Muy importante: coloca el fondo detrás de todo */
  opacity: 1; /* Puedes ajustar la opacidad si deseas que sea más tenue */
}
.imagenes-galeria img {
  width: 100%;
  max-width: 300px;
  margin: 10px;
}