body {
  background: #232326;
}

p {
  color: #b0b0b0;
}

.about-hero,
.about-hero2 {
  text-align: center;
  padding-top: 7rem;
  padding-bottom: 3rem;
}

.about-hero h1,
.about-hero2 h1 {
  font-size: 50px;
  font-weight: 700;
  color: #fcfbf8;
  margin-bottom: 1rem;
}

.about-hero p,
.about-hero2 p {
  font-size: 18px;
  font-weight: 500;
  color: #b0b0b0;
  max-width: 75ch;
  margin: 0 auto;
}

.about-hero2 {
  padding-top: 0;
}

.divider {
  max-width: 83rem;
  height: 1px;
  background: linear-gradient(to right, transparent, #ffe00044, transparent);
  margin: 5rem auto;
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 83rem;
  margin: 0 auto;
}

.event-card {
  background-color: #2a2a2e;
  border: 1px solid #404040;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  filter: drop-shadow(0 0 1rem #111111aa);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe000, #ffd700);
  border-radius: 0.75rem;
  padding: 1rem;
  min-width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.date-day {
  font-size: 28px;
  font-weight: 700;
  color: #232326;
  line-height: 1;
}

.date-month {
  font-size: 14px;
  font-weight: 600;
  color: #232326;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-content h3 {
  color: #fcfbf8;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.event-time {
  color: #ffe000;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.event-description {
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.event-button {
  background-color: transparent;
  color: #fcfbf8;
  border: 1px solid #404040;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.event-button:hover {
  background-color: #ffe000;
  color: #232326;
  border-color: #ffe000;
}

.event-icon {
  width: 1.2rem;
  height: 1.2rem;
  vertical-align: middle;
  position: relative;
  top: -0.14rem; /*because of some wierd spacing issues*/
  color: #ffe000;
}

/*REUSED CSS FROM NEWS BECAUSE WE MOVED WHAT WE HAD IN NEWS TO EVENTS*/

.events-grid {
  max-width: 83rem;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.events-card {
  background-color: #2a2a2e;
  border: 1px solid #404040;
  border-radius: 1rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.events-tag {
  display: inline-block;
  background-color: #ffe000;
  color: #232326;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.events-card h2 {
  color: #fcfbf8;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
}

.events-card p {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.events-card p:last-child {
  margin-bottom: 0;
}

.events-highlight {
  background-color: #35353a;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}

.events-highlight strong {
  color: #ffe000;
}

.events-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: start;
  filter: drop-shadow(0 0 1rem #181818aa);
}

.events-card img {
  grid-column: 2;
  grid-row: 1 / span 6;
  max-height: 450px;
  width: auto;
  border-radius: 0.5rem;
  object-fit: cover;
  margin-left: 1rem;
}

.events-tag,
.events-card h2,
.events-card p {
  grid-column: 1;
  width: fit-content;
}

.divider {
  max-width: 83rem;
  height: 1px;
  background: linear-gradient(to right, transparent, #ffe00044, transparent);
  margin: 5rem auto;
}

.cta-section {
  max-width: 83rem;
  margin: 0 auto 4rem;
  text-align: center;
  background-color: #2a2a2e;
  border: 1px solid #404040;
  border-radius: 1rem;
  padding: 3rem 2rem;
}

.cta-section h2 {
  color: #fcfbf8;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.cta-section p {
  color: #b0b0b0;
  font-size: 18px;
  margin: 0 0 0.5rem 0;
}

.cta-button {
  display: inline-flex;
  background-color: #2a2a2e;
  border: 1px solid #404040;
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  margin-top: 2rem;
  color: #fcfbf8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #ffe000;
  color: #232326;
  border-color: #ffe000;
}
