body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: white;
  text-align: center;
}

nav {
  background-color: #751111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

.logo {
  font-weight: bold;
  font-size: 24px;
  color: white;
  text-decoration: none; /* Remove underline */
}


nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.join-btn {
  background-color: #f00;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* make link text look like button */
}


.title {
  margin-top: 40px;
  font-size: 32px;
  font-weight: bold;
}

.subtitle {
  color: #ccc;
  margin-bottom: 30px;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px auto;
  padding: 0 20px;
}

.category-buttons button {
  padding: 12px 28px;
  font-size: 16px;
  background-color: #f00;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  min-width: 140px;
  text-align: center;
}

.category-buttons button:hover {
  background-color: #c00;
}


.merch-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  min-height: 400px;
}

.merch-card {
  width: 250px;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.merch-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.hidden {
  display: none;
}
