/* Charity Styles */
.charity {
  background-color: #0c0c0c;
}

.charity-logo-container {
  text-align: center;
  margin: 40px 0;
}

.charity-logo-large {
  max-width: 250px;
  margin: 0 auto;
  display: block;
  filter: brightness(0.9) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.charity-logo-large:hover {
  filter: brightness(1) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
}

.sponsors-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #222;
}

.sponsors-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.sponsors-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin: 40px auto;
  max-width: 1000px;
  justify-content: center;
}

.sponsor-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.sponsor-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

.sponsor-logo {
  max-width: 100%;
  height: 60px; /* Set a consistent height */
  object-fit: contain; /* Ensure it doesn't stretch */
  filter: grayscale(30%);
  transition: filter 0.3s ease;
  display: block;
  margin: 0 auto; /* Extra centering help */
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0%);
}

.ticket-section {
  padding: 60px 0;
  text-align: center;
}

.ticket-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.ticket-embed-wrapper {
  max-width: 650px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 12px;
  background-color: #050505;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
