.home-link {
  display: none;
  text-decoration: none;
  color: white;
  @media screen and (max-width: 500px) {
    display: flex;
    align-items: center;
  }
}

.home-link-text {
  display: none;
  color: white;
  margin-left: 1rem;
  font-size: 80%;
  @media screen and (max-width: 500px) {
    display: block;
  }
}
span.home-link-text {
  display: block;
}
.event-logo {
  display: none !important;
  @media screen and (min-width: 1000px) {
    display: block !important;
  }
}
nav {
  .event-menu {
    ul {
      width: fit-content;
      height: 32px;
      margin: 0;
      padding: 0;
    }

    p {
      text-align: center;
      width: 100%;
      margin: 0;
      padding: 0;
      color: aliceblue;
      font-size: 1.2rem;
      font-weight: bold;
    }
  }

  @media screen and (max-width: 500px) {
    top: 7px;
    left: 0;
    width: 100vw;
  }
}
.nav-collapsed {
  @media screen and (max-width: 500px) {
    top: -7px;
  }
}
.top-collapsed {
  @media screen and (max-width: 500px) {
    background-color: #182638;
  }
}
.text-center {
  text-align: center;
}
.subtitle {
  font-size: 1rem;
  font-weight: normal;
  max-width: 700px;
}
.content-spacer {
  height: 10rem;
  @media screen and (max-width: 500px) {
    height: 0rem;
  }
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.event-page-content {
  min-height: 100vh;
}
.event-page-section {
  flex-direction: column;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  /* background-color: #c4943a; */

  p {
    margin: 1rem 2rem;
  }

  .p-highlight {
    font-size: 1.2rem;
    font-weight: bold;
    font-style: italic;
  }
}

h1 {
  margin: 1rem 2rem;
}

h2 {
  margin: 1rem 2rem;
}

h3.event-section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1rem;

  @media screen and (max-width: 500px) {
    font-size: 1.5rem;
    margin-left: 0.5rem;
  }
}
h4.event-section-subtitle {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.event-contact-list {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* justify-content: center; */
  margin: 1rem 2rem;

  li {
    margin-bottom: 0.5rem;
  }
}

.table-wrap {
  overflow-x: auto;
  width: 100%;
  margin-top: 2rem;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 400px;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #ccc;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.responsive-table th {
  background-color: #f3f3f3;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .responsive-table {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 500px) {
  .responsive-table th,
  .responsive-table td {
    padding: 0.75rem;
  }
}
