/* Estilos generales */
body {
  margin: 0;
  font-family: "Georgia", serif;
  background: url("images/background_contocraft.png") no-repeat center center fixed;
  background-size: cover;
  color: #2b1b0f;
  line-height: 1.6;
}

h1, h2 {
  font-family: "Pirata One", cursive; /* Puedes importar una fuente tipo pirata */
  color: #3e1f09;
  text-shadow: 1px 1px 2px #d9c59e;
}

/* Header */
.header {
  background: rgba(43, 27, 15, 0.9);
  color: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  max-height: 100px;
}

.header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.header nav a {
  color: #f5e4c3;
  text-decoration: none;
  font-weight: bold;
}

.header nav a:hover {
  color: #ffd36b;
}

/* Hero */
.hero {
  text-align: center;
  padding: 50px 20px;
  background: rgba(255, 248, 220, 0.8);
  border: 2px solid #7a5a2a;
  margin: 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Historia (flex con imagen y texto) */
.historia {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px auto;
  max-width: 1100px;
  padding: 25px;
  background: rgba(255, 248, 220, 0.9);
  border: 2px solid #7a5a2a;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.historia img {
  max-width: 20%;
  border: 3px solid #7a5a2a;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}

.historia .texto {
  flex: 1;
  text-align: justify;
  font-size: 1.1em;
}

/* Secciones */
.section {
  margin: 40px auto;
  max-width: 1000px;
  padding: 20px;
  background: rgba(255, 248, 220, 0.85);
  border: 2px solid #7a5a2a;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.section ul li {
  margin: 5px 0;
}

/* Botones */
.btn {
  display: inline-block;
  background: #7a5a2a;
  color: #fff;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #9c6f36;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: rgba(43, 27, 15, 0.95);
  color: #fff;
  margin-top: 40px;
}

.icono {
  max-width: 32px;
  border: 1px solid #c0c0c0;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}


nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.7); /* Fondo para resaltar */
    position: absolute;
    top: 60px; /* debajo del header */
    left: 0;
    width: 100%;
    display: none; /* oculto por defecto */
  }

  nav ul.show {
    display: flex; /* aparece cuando se activa */
  }

  /* Botón hamburguesa */
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: white;
    margin-right: 15px;
  }
}

.menu-toggle {
  display: none; /* solo se muestra en móvil */
}
