/* Base site styling */
body {
  font-family: 'Share Tech Mono', monospace;
  background-color: #000;
  color: #0f0;
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero {
  background-image: url('0.jpeg');
}

#second {
  background-image: url('1.jpg');
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
  height: auto;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.link-grid a {
  text-align: center;
  padding: 15px;
  background-color: #111;
  border: 1px solid #0f0;
  border-radius: 5px;
  color: #0f0;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  text-transform: uppercase;
  box-shadow: 0 0 6px #0f0;
}

.link-grid a:hover {
  background-color: #0f0;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 20px #0f0;
}

/* Fundraising section — HIDDEN */
.hidden {
  display: none !important;
}

/* Responsive fixes */
@media (max-width: 768px) {
  #hero,
  #second {
    background-size: contain !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .link-grid a {
    font-size: 1rem;
    padding: 12px;
  }
}
