body {
  font-family: Poppins, Arial, sans-serif;
  margin: 0;
  height: 100vh;
  background: linear-gradient(to bottom, #689d66, #bfd8a1);
  color: #fff;
  text-align: center;
  padding: 20px;
}

header {
  margin-bottom: 30px;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  background: #222;
  border-radius: 0 0 12px 12px;
}

.navbar li {
  display: inline;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.navbar a:hover,
.navbar a:focus {
  background: #ffd700;
  color: #222;
}

.highlight {
  color: #056608;
  font-weight: bold;
}

.socials a {
  margin: 0 10px;
  font-size: 1.5rem;
  text-decoration: none;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

form input, form textarea {
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  background: #056608;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: left;
}

.project-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

button:hover {
  background: #044d05;
}

.shop-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 20px 0;
}

@media (min-width: 600px) {
  .shop-items {
    grid-template-columns: 1fr;
  }
  .shop-card {
    max-width: 600px;
    margin: 0 auto;
  }
}
