/* === General Site Style === */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #333333;
}

h1, h2, h3 {
  font-weight: bold;
  color: #9B1C1C; /* Shrine Red */
}

a {
  color: #9B1C1C;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === Header === */
#wa-header {
  background-color: #9B1C1C;
  color: white;
  padding: 20px 0;
}

#wa-header img {
  max-height: 60px;
  vertical-align: middle;
}

.header-tagline {
  color: #F4B400; /* Shrine Gold */
  font-weight: bold;
  font-size: 16px;
  float: right;
  margin-top: 15px;
}

/* === Hero Banner === */
.hero-banner {
  background: url('YOUR-PARADE-IMAGE-URL') center center / cover no-repeat;
  text-align: center;
  padding: 80px 20px;
}

.hero-banner .cta-button {
  display: inline-block;
  background-color: #F4B400;
  color: #000;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 20px;
}

.hero-banner .cta-button:hover {
  background-color: #e0a800;
}

/* === Welcome Message === */
.welcome-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

/* === Events Section === */
.events-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 20px;
}

.event-card {
  border: 2px solid #9B1C1C;
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  text-align: center;
  background-color: white;
}

.event-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.event-card p {
  margin-bottom: 0;
}

/* === Footer === */
#wa-footer {
  background-color: #9B1C1C;
  color: white;
  padding: 20px;
  text-align: center;
}

/* === Responsive Tweaks === */
@media screen and (max-width: 768px) {
  .events-grid {
    flex-direction: column;
    align-items: center;
  }

  .header-tagline {
    float: none;
    text-align: center;
    display: block;
    margin-top: 10px;
  }
}
