/*
Theme Name: Deforestationfree Minimal
Author: Achim
Version: 1.0
*/

body {
  font-family: system-ui, sans-serif;
  margin: 0;
  background: #fff;
  color: #000;
  line-height: 1.6;
}

section {
  padding: 60px 40px;
  border-bottom: 1px solid #eee;
}

h1, h2, h3 {
  font-weight: 500;
  margin-bottom: 16px;
}

.subline {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
}

.grid-3, .grid-4, .grid-2 {
  display: grid;
  gap: 24px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 20px;
}

header {
  padding: 24px 40px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 600;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  align-items: flex-start;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #000;
}

.menu-label {
  font-size: 12px;
  margin-top: 4px;
}

.overlay-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  padding: 80px 40px;
  display: none;
  flex-direction: column;
  gap: 24px;
  font-size: 22px;
  z-index: 999;
}

.overlay-menu a {
  text-decoration: none;
  color: #000;
}

@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }
}
