* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #3c2f2f;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,.5)),
              url(multitienda/bosqueee.webp) no-repeat center center/cover;
  background-attachment: fixed;
}

header {
  height: auto;
  padding: 20px 0 80px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(44, 36, 30, 0.6);
  padding: 15px 30px;
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.6em;
  font-weight: bold;
  color: #f2e6d8;
  text-shadow: 1px 1px 3px #000;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  font-size: 15px;
  color: #f7f2ec;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.menu li a:hover {
  background-color: #e6d3b3;
  color: #2f1e1e;
}
/* SECCIÓN DE CONTACTO */
#contacto{
box-shadow: #201313;
}
.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(41, 46, 42, 0.658);
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(49, 7, 7, 0.2);
}

.formulario-contacto label {
  color: #fff5eb;
  font-weight: bold;
  font-size: 1em;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #fffdfc;
  color: #1a1a1a;
  font-size: 1em;
  resize: vertical;
}

.formulario-contacto button {
  padding: 12px;
  background: linear-gradient(135deg, #020700fb, #9aca99);
  color: #1f1f1f;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-contacto button:hover {
  background-color: #cce9c4;
}
h3{
  text-align: center;
  color: #f2e6d8;
  text-shadow:2px 2px 5px  #000;
}