/*
 * Globals
 */


/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}

:root {
  --heading-font:  "Merriweather", serif;
  --body-font: "Lato", sans-serif;
  --moss: #414224;
  --sage: #80744a;
  --copper:#63533a;
  --mist: #efeae4;
  --link-color:var(--mist);
}
/*
 * Base structure
 */

body {
  background-color: var(--moss);
  color: var(--mist);
  font-family: var(--body-font);
  font-size:18px;
  font-weight:300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
h1, h2, h3, h4  {
  font-weight:300;
  font-family: var(--heading-font);
}

a {
  color: var(--link-color);
}

.cover-background{
  position: fixed;
  z-index: -1;
  opacity: .75;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  filter: brightness(0.5);
  pointer-events: none;
  animation: zoom 4s ease-out;
  animation-fill-mode: forwards;
}

.cover-background-display {
  animation: fade-in 3s ease-in forwards;
}

.cover-container {
  max-width: 42em;
  animation: fade-in 0.7s ease-in forwards;
}

.logo-mark {
  width:12.5em;
  margin-right:1.5em;
}

.logo {
  width:11em;
}

.logo-group{ 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:1.5em;
  margin-bottom:2em;
}

/*
 * Header
 */

 .social-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap:1em;
  padding-bottom:2em;
 }

 .social-icon {
  width:2em;
 }

 a.social-link img {
  transition: transform .3s ease-in-out;
}
 a.social-link:hover img {
  transform: scale(1.1);
}

.nav-masthead .nav-link {
  color: var(--link-color);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


@keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}