/* Fondo y estructura general */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('cobaev.jpg');
  background-size: cover;
  background-position: center;
  transition: background 0.5s ease, color 0.5s ease;
}

/* Contenedor principal */
.container {
  width: 80%;
  margin: 40px auto;
  background-color: #f5e1c0; /* Color arena */
  color: #3d0000; /* Texto vino */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* Encabezado */
header {
  background-color: #700000; /* Color vino */
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 5px #000;
  transition: background-color 0.5s ease;
}

/* Sección de información */
.info {
  text-align: center;
  padding: 20px;
  line-height: 1.6;
}

/* Dirección destacada */
.direccion-box {
  margin-top: 20px;
  text-align: left;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.direccion-box p {
  font-size: 18px;
}

.direccion-box a {
  color: #700000;
  text-decoration: none;
}

.direccion-box a:hover {
  text-decoration: underline;
}

/* Efecto resaltado en dirección */
#direccion {
  font-weight: bold;
  font-size: 20px;
  transition: color 0.3s ease;
}

/* Estilos de Google Maps */
iframe {
  display: block;
  margin: auto;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: #700000;
  color: white;
  font-size: 14px;
  transition: background-color 0.5s ease;
}

