/* Global */
html, body {
  height: 100%;
}

p {
  line-height: 2em;
}

section {
  margin-top: 100px;
  margin-bottom: 100px;
}

/* Utils */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-margin {
  margin: 0;
}

.btn.btn-primary, .btn.btn-primary:hover, .btn-outline-primary:hover {
  color: white;
}

/* Main menu */
#main-menu .nav-link {
  color: #666666;
}

#main-menu .nav-item {
  margin-right: 32px;
}

#main-menu .nav-link:hover {
  color: #0499CC;
}

/* Hero */
#hero {
  height: 90%;
  background: url("/assets/hero-image-min-11142023.jpeg") no-repeat center center fixed;
  background-size: cover;
}

/* Mobile Safari renders fixed backgrounds against an oversized viewport,
 * which makes cover images appear heavily cropped. Keep the fixed effect on
 * desktop, but size the hero against its own box on touch devices. */
@media screen and (max-width: 991.98px), (hover: none) and (pointer: coarse) {
  #hero {
    background-attachment: scroll;
  }
}

#hero-overlay {
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: white;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

#hero__title {
  font-size: 72px;
}

#hero__tagline {
  font-size: 36px
}

#hero__date {
  font-size: 84px;
}

#hero__location {
  font-size: 24px;
}

@media screen and (max-width: 576px) {
  #hero__title {
    font-size: 40px;
  }

  #hero__tagline {
    font-size: 20px
  }

  #hero__date {
    font-size: 36px;
  }

  #hero__location {
    font-size: 18px;
  }
}

#logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Faculty */
#faculty-hero {
  text-align: center;
  color: white;
  background: url("/assets/lln-aerial-min-5e21a449.jpeg") no-repeat center center;
  background-size: cover;
}

#faculty-hero-overlay {
  padding-top: 100px;
  padding-bottom: 100px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
}

#faculty-hero__number {
  font-size: 64px;
  line-height: 60px;
  font-weight: bold;
}

#faculty-hero__label {
  font-size: 48px;
}

#faculty-hero__banner {
  background-color: #0499CC;
  padding-top: 20px;
}

.faculty-hero__banner__item {
  margin: 0;
  padding-bottom: 20px;
}

/* Registration */
.registration-item {
  text-align: center;
}

.registration-item__title {
  margin-top: 16px;
  font-weight: bold;
}

.registration-item__icon {
  height: 60px;
}

/* FAQs */
.faqs {
  column-count: 2;
}

@media screen and (max-width: 576px) {
  .faqs {
    column-count: 1;
  }
}

.faq {
  margin-bottom: 32px;
  break-inside: avoid;
}

/* Contact */
.contact-icon {
  margin-top: 10px;
  height: 32px;
}

/* Footer */
#footer {
  margin: 0;
  color: white;
  font-size: 13px;
  text-align: center;
  background-color: #333;
}

#footer p {
  margin: 0;
  padding: 20px;
}
