/* Fondo general oscuro y texto claro */
body {
  background-color: #000;
  color: #fff;
  font-family: inherit;
  margin: 0;
  padding: 0;
}

/* HERO DE TIENDA */
.hero-tienda {
  background-image: url('../img/fondo/fachada.jpeg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
}

@media (max-width: 768px) {
  .hero-tienda {
    background-position: 20%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh; /* Menos alto pero sigue cubriendo */
  }

  .hero-content {
    padding: 20px;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 14px;
  }
}




.login-seccion {
  background-color: #000;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.login-seccion h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #c7a17a;
}

.login-formulario {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  background: url('../img/fondo/contacto0.jfif') center/cover no-repeat;
  background-color: rgba(0, 0, 0, 0.6); /* capa oscura encima de la imagen */
  backdrop-filter: blur(3px); /* pequeño blur opcional */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}



.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input {
  padding: 10px;
  border: none;
  border-radius: 8px;
  background-color: #222;
  color: white;
}

.login-formulario button {
  padding: 12px;
  background-color: #c7a17a;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-formulario button:hover {
  background-color: #a67c52;
}


.direccion-lista {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 300;
}

.direccion-lista li {
  margin-bottom: 4px;
}

.registro-invitacion {
  background: url('../img/fondo/rgt.png') center/cover no-repeat;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.invitacion-contenido {
  background: rgba(0, 0, 0, 0.6);

  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.invitacion-contenido h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.invitacion-contenido p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-invitacion {
  display: inline-block;
  padding: 10px 25px;
  background-color: #c49a6c;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-invitacion:hover {
  background-color: #e0b47b;
}

.formulario-contacto {
  background-image: url('../img/fondo/form.jpg'); /* Cambia la ruta si usas otra carpeta */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #fff;
  font-family: 'Georgia', serif;
}

.form-container {
  max-width: 700px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.6); /* transparencia */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-container p {
  margin-bottom: 20px;
  font-style: italic;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #333;
  font-size: 1rem;
}

.form-container button {
  background-color: #c4a47c;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
}

.form-container button:hover {
  background-color: #a77b50;
}

form input[type="text"],
form input[type="email"],
form textarea {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid #555;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 15px;
}

form input::placeholder,
form textarea::placeholder {
  color: #ccc;
}

.formulario-contacto textarea,
.formulario-contacto input[type="text"],
.formulario-contacto input[type="email"] {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: 1px solid #555;
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 15px;
  font-family: inherit;
}

.formulario-contacto textarea::placeholder,
.formulario-contacto input::placeholder {
  color: #ccc;
}



