/* Reset básico */
* {
  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;
}

/* NAV con fondo cálido */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 31, 7, 0.705);
  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: #022712;
}


/* SOBRE MÍ con colores del inicio */
.about {
  padding: 60px 40px;
  max-width: 1000px;
  margin: 40px auto;
 
  box-shadow: 0 6px 100px rgba(0, 0, 0, 0.212);
}

.about h2 {
    text-shadow: 6px 6px 30px #000000;
  text-align: center;
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: bold;
 
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
#foto{
  width: 180px;
  image-resolution: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.534);
}

/* Si no quieres mostrar la imagen, descomenta esta línea: */
/* .about-content img { display: none; } */

p {
  flex: 1;
  background: linear-gradient(135deg, #02070042, #9aca99);
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  color:#ffffff;
  font-style: italic;
  text-align: justify;
  box-shadow: 2px 2px 20px rgba(255, 255, 255, 0.938);
}