/* HOMEPAGE */

.home-container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
}
.home-container .header-logo .logo-subtitle {
  font-size: 0.8125rem;
  font-weight: 400;
  max-width: 200px;
  text-align: center;
}

.home-subcontainer {
  box-sizing: border-box;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 50%;
  align-self: stretch;
}

.home-subcontainer.home-content {
  background-color: var(--beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-subcontainer.home-img {
  background-image: url('../img/home.webp');
  background-size: cover;
  background-position: center center;
}

.home-container .home-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.home-container .home-links .button {
  align-self: stretch;
}

.logo-title {
  font-size: 3em;
  margin: 0;
  text-align: center;
  font-weight: 100;
}

.home .header-logo {
  margin-bottom: 0;
}

.home-content .vertical-line {
  width: 0.8px;
  height: 100px;
  background-color: #333333;
  margin: 40px 0px;
}

.home-container .home-tagline {
  font-family: 'ZapfHumnst BT', sans-serif;
  color: var(--vert);
  font-size: 1.875rem;
  text-align: center;
  line-height: 1.1;
  margin: 0 0 1.125rem 0;
  width: 140px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .home-container {
    flex-direction: column;
  }

  .home-subcontainer .vertical-line {
    display: none;
  }

  .home-content .logo-title {
    font-size: 2.5rem !important;
  }

  .home-subcontainer {
    height: 50%;
    padding: 20px 50px;
    min-height: unset;
    display: block;
  }

  .home-subcontainer.home-content {
    text-align: center;
    z-index: 1;
    margin: 0 auto;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .home-tagline {
    font-size: 2em;
  }

  .home .header-logo {
    margin-bottom: 32px;
    margin-top: -12px;
  }

  body.home footer {
    display: none;
  }
}
