#contact {
  padding-top: 1rem; /* override 3rem */
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0 30px;
}

.contact-icons a svg {
  width: 64px;
  height: 64px;
  transition: transform 0.2s ease;
}

.contact-icons a:hover svg {
  transform: scale(1.2);
}

.sponsor-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.sponsor img {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.sponsor img:hover {
  transform: scale(1.1);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.merch-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.merch-item img {
  max-width: 180px;
  max-height: 240px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
}

.merch-item:hover img {
  transform: scale(1.05);
}


.modal-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.modal-gallery img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  cursor: zoom-out;
}

#lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.3s ease;
}

#prev-btn {
  left: 20px;
}

#next-btn {
  right: 20px;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

section {
  padding: 3rem 1rem;
}

section:nth-of-type(odd) {
  background-color: var(--white);
  color: var(--black);
}

section:nth-of-type(even) {
  background-color: var(--beige);
  color: var(--black);
}
.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

