html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease-out,
    transform 0.75s ease-out;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

#logo {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  transition:
    max-width 0.2s ease,
    max-height 0.2s ease;
}

@media (max-width: 991.98px) {
  #logo {
    max-width: 100%;
  }

  #logo.mobile-logo {
    max-width: 100%;
  }
}

ul.navbar-nav {
  width: 100%;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.nav-link {
  color: #007200;
}

nav {
  background-color: #dad7cd;
}

nav.scrolled {
  background-color: rgba(218, 215, 205, 0.7);
  backdrop-filter: blur(10px);
  padding: 12px;
}

body {
  background-color: #dad7cd;
}

.bg-hero {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  background-color: #dad7cd;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.bg-vid {
  object-fit: cover;
  height: 75vh;
  pointer-events: none;
}

.bg-cover {
  background-color: rgba(15, 81, 50, 0.45);
  min-height: 75vh;
  max-height: 100%;
}

.hero-left,
.hero-right {
  background-color: rgba(218, 215, 205, 0.15);
  font-family: "DM Mono", monospace;
  text-transform: capitalize;
  color: #ffffff;
  max-height: 80%;
  max-width: 80%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 10px 6px 6px rgba(0, 0, 0, 0.5);
}

.hero-left > h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

.hero-left > p,
.hero-right > p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #dee2e6;
}

.hero-left > p:first-child {
  text-transform: uppercase;
}

.hero-left > a {
  background-color: #007200;
}

#services {
  font-family: "DM Mono", monospace;
}

.card {
  box-shadow: 5px 3px 3px #007200;
  color: #344e41;
  letter-spacing: 0.05em;
}

.card-header {
  color: #152219;
  font-weight: 700;
  font-size: 1.2rem;
}

#showcase {
  background-color: #18392b;
  font-family: "DM Mono", monospace;
  font-size: 1rem;
  font-weight: 100;
  color: #dee2e6;
}

h2 {
  font-size: 1.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
}

#showcase p,
#pricing p,
#contact p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
}

li h3 {
  color: #ffffff;
  font-weight: 500;
}

.mobile-display {
  box-shadow: 10px 6px 6px #000000;
}

.mobile-display a,
.desktop-display a {
  background-color: #007200;
  color: #ffffff;
}

.mobile-display a:hover,
.desktop-display a:hover {
  color: #000000;
}

#pricing {
  font-family: "DM Mono", monospace;
}

#services h2,
#pricing h2 {
  color: #007200;
}

#pricing p {
  color: #152219;
}

.cost-options a {
  background-color: #007200;
  color: #ffffff;
  text-transform: uppercase;
}

#contact {
  background-color: #18392b;
  font-family: "DM Mono", monospace;
  color: #ffffff;
}

.calendly-inline-widget {
  box-shadow: 10px 6px 6px #000000;
  min-width: auto;
  height: 400px;
}

.copyright {
  background-color: #dad7cd;
  color: #000000;
  font-family: "DM Mono", monospace;
  font-size: 1.25rem;
}

.form-submit {
  background-color: #007200;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-right {
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    width 0.25s ease;
  min-width: 100%;
}

.hero-right:hover {
  transform: translateX(-55%) translateY(-4px) scale(1.05);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.24);
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  width: min(100%, 80vw);
  z-index: 3;
}

.hero-right .hover-copy {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 1rem;
  transition:
    opacity 0.24s ease,
    max-height 0.24s ease;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #f4f7ee;
}

.hero-right:hover .hover-copy {
  opacity: 1;
  max-height: 1000px;
}

@media (min-width: 575.08px) {
  .bg-hero {
    position: absolute;
    right: 8%;
  }
}

@media (min-width: 767.98px) {
  .bg-hero {
    right: 18%;
  }

  .hero-left {
    width: 50%;
  }

  .story,
  .visual {
    width: 50%;
    min-width: 50%;
    flex: 0 0 50%;
  }
}

@media (min-width: 991.98px) {
  .calendly-inline-widget {
    min-height: 650px;
    min-width: 100%;
  }
  ul.navbar-nav {
    font-size: 1rem;
    gap: 10px;
  }
  .bg-hero {
    font-size: 2.5rem;
    left: 10%;
  }

  #showcase {
    font-size: 1rem;
  }

  li h3 {
    font-size: 1.25rem;
  }
  .story {
    width: 100%;
  }

  .visual {
    width: 100%;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1199.98px) {
  .calendly-inline-widget {
    min-height: 550px;
    min-width: 100%;
  }
  ul.navbar-nav {
    font-size: 1.25rem;
    gap: 13px;
  }
}
