body {
  background-color: #a6a454;
  font-family: 'Kalam', cursive;
  color: #f3e0c7;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 20px;
}

header img {
  max-width: 250px;
}

nav {
  background-color: #2f5523;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo {
  color: #f3e0c7;
  font-weight: bold;
  font-size: 20px;
}

.menu-toggle {
  font-size: 26px;
  color: #f3e0c7;
  cursor: pointer;
  display: none;
  background: none;
  border: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #f3e0c7;
  text-decoration: none;
  font-weight: bold;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  line-height: 1.7;
}

h1, h2, h3 {
  color: #2f5523;
}

section {
  margin-bottom: 40px;
}

.highlight {
  color: #2f5523;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Galería básica */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
