#video-container {
  position: relative;
  width: 100vw;
  min-height: 600px;
  height: calc(100vh - 64px);
  overflow: hidden;
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(27, 84%, 10%, 0.65);
  z-index: 1;
}

#hero-text {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 120px;
  width: 100%;
  background-color: var(--see-through-background);

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  z-index: 2;
}

#hero-text p {
  font-size: 16px;
  line-height: 24px;
}

#hero-actions {
  height: 48px;
  width: 100%;
  background-color: var(--see-through-background);

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: absolute;
  top: 580px;
  left: 50%;
  transform: translate(-50%, -50%);
  
  z-index: 2;
}

#hero-actions a {
  padding-left: 48px;
  padding-right: 48px;

  text-decoration: none;
  color: var(--text-beige);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  font-family: 'Lora', serif;
  font-size: 14px;
  line-height: 21px;
}

#hero-actions a:hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  #hero-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: calc(100vh - 96px);
  }

  #hero-content {
    height: calc(100vh - 96px);
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 200px;
    text-align: center;
    background: #261D12
  }

  #video-container {
    width: 40%;
    height: 100%;
    position: relative;
  }

  #background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #hero-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 80%;
    background-color: transparent;
  }

  #hero-text p {
    font-size: 35px;
    line-height: 39px;
  }

  #hero-actions {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 80%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    gap: 160px;
  }

  #hero-actions a {
    padding-left: 48px;
    padding-right: 48px;
    text-decoration: none;
    color: var(--text-beige);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Lora', serif;
    font-size: 21px;
    line-height: 31px;
  }

  #hero-actions a img {
    width: 30px;
    height: 30px;
  }
}
