
/* OD Green Full-Site Palette for Lawrence County Business */

body {
  background-color: #5b644d;
  font-family: Arial, sans-serif;
  color: #BEF7BF;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.header {
  text-align: center;
  padding: 50px 20px 20px;
  color: #BEF7BF;
}

.header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.header p {
  font-size: 20px;
  margin-top: 0;
}

.search-section {
  text-align: center;
  padding: 30px 20px;
}

.search-section select,
.search-section button {
  font-size: 18px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 6px;
  border: none;
}

.search-section select {
  min-width: 250px;
}

.search-section button {
  background-color: #668359;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-section button:hover {
  background-color: #7ea66d;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px 60px;
}

.category-card {
  background-color: #668359;
  color: #BEF7BF;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 200px;
  cursor: pointer;
  box-shadow: 3px 3px 2px black;
  transition: background-color 0.3s ease;
}

.category-card:hover {
  background-color: #7ea66d;
}
