body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: linear-gradient(120deg, #25235b 0%, #6b40a0 100%);
  margin: 0;
  min-height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem 0 1rem 0;
}

.main-logo {
  max-width: 320px;
  width: 80vw;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  border: 4px solid #ffdf00;
  background: white;
}

nav {
  margin: 1.5rem 0 0.5rem 0;
}

.nav-link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin: 0 2rem;
  font-size: 1.25rem;
  padding: 0.25rem 1.25rem;
  border-radius: 24px;
  transition: background 0.2s;
}

.nav-link.active,
.nav-link:hover {
  background: #ff4eb4;
  color: #fff700;
}

main {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-container {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}


.event-announcement {
  background: linear-gradient(135deg, #ffe53b, #ff2525);
  border-left: 10px solid #fff700;
  padding: 2rem;
  margin: 2.5rem auto;
  font-size: 1.2rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  color: #fff;
  max-width: 720px;
  text-align: center;
  font-weight: bold;
  animation: pulseHighlight 4s ease-in-out infinite;
}

.event-announcement h2 {
  font-size: 1.8rem;
  margin-top: 0;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.event-announcement p {
  line-height: 1.8;
  margin-top: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

@keyframes pulseHighlight {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(255, 39, 143, 0.6);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 247, 0, 0.9);
  }
}


.hero-section,
.about-section {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 2.5rem 2rem;
  margin: 2rem auto;
  width: 96vw;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text {
  flex: 2 1 350px;
  min-width: 320px;
  margin-right: 2rem;
}

.coming-soon {
  font-size: 2rem;
  margin: 1.5rem 0;
  color: #ffdf00;
  text-shadow: 2px 2px 8px #24235b99;
  background: #ff4eb488;
  padding: 0.4rem 1.2rem;
  border-radius: 1.5rem;
  display: inline-block;
}

.mission-statement {
  font-size: 1.2rem;
  background: #181b3480;
  padding: 1.2rem;
  margin: 2rem 0 2.5rem 0;
  border-radius: 16px;
  box-shadow: 0 2px 8px #0f012750;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mascot-art {
  flex: 1 1 200px;
  text-align: center;
  margin-top: 2rem;
}

.mascot-img {
  max-width: 270px;
  width: 48vw;
  border-radius: 18px;
  box-shadow: 0 2px 16px #000a;
  border: 3px solid #ffdf00;
  background: #fff;
}

.interest-form-blurb {
  margin: 2.5rem 0 0.5rem 0;
  background: #ffdf0018;
  color: #fff;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  font-size: 1.2rem;
  box-shadow: 0 2px 6px #0002;
}

.interest-form-blurb a {
  color: #ff4eb4;
  background: #fff700;
  border-radius: 8px;
  padding: 0.2rem 0.8rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}

.interest-form-blurb a:hover {
  background: #ff4eb4;
  color: #fff;
}

.interest-form-blurb iframe {
  width: 100%;
  height: 480px;
  border: none;
  max-width: 100%;
}

.board-section {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}

.board-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.board-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  width: 100%;
}

.board-member {
  max-width: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.board-member h3 {
  font-size: 18px;
  margin: 10px 0;
}

.board-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background-color: #ddd;
}

footer {
  text-align: center;
  background: rgba(0, 0, 0, 0.88);
  color: #ffdf00;
  font-size: 1rem;
  padding: 1.5rem 0 1rem 0;
  letter-spacing: 1px;
  margin-top: 3rem;
}

/* Responsive Tweaks */
@media (max-width: 900px) {
  .hero-section,
  .about-section {
    padding: 2rem 0.5rem;
  }

  .hero-text,
  .mascot-art {
    margin: 0;
    min-width: unset;
  }

  .mascot-art {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .mission-statement {
    font-size: 1rem;
    padding: 1rem;
  }

  .board-members {
    gap: 20px;
  }

  .board-member h3 {
    font-size: 1rem;
  }
}
