/* index.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

.header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5e8d9, #ffffff);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hh-title {
  font-size: 32px;
  font-weight: 700;
  color: #9e5318;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 16px;
  color: #6b7280;
}

.filter-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.filter-title {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
}

.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-item {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
}

.filter-item:hover {
  border-color: #b3b3b3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

@media (min-width: 600px) {
  .filter-list {
    flex-direction: row;
    justify-content: center;
  }

  .filter-item {
    width: auto;
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 20px 10px;
  }

  .hh-title {
    font-size: 24px;
  }

  .filter-container {
    margin: 20px auto;
    padding: 10px;
  }

  .filter-title {
    font-size: 20px;
  }
}