body {
  background-color: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.cover {
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.bg-image1 {
  background: url(/images/hiking-1600w-80.jpg);
  background-position: center center;
  background-size: cover;
}

.bg-white2 {
  background: rgba(255, 255, 255, 0.9);
}

.pallete1 {
  color: #fff;
  background-color: #000;
}

.pallete2 {
  background-color: #839788;
}

.pallete3 {
  background-color: #eee0cb;
}

.pallete4 {
  background-color: #baa898;
}

.pallete5 {
  background-color: #bfd7ea;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.bg-white {
  background: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.5;
}

.fancy {
  font-family: "Cormorant Garamond", serif;
}

.nav-link {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2.4px;
  color: black;
}

.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8em;
  color: black;
}

.navbar-brand:hover {
  color: #000;
  opacity: 0.5;
}

a {
  color: #000;
}

a.text {
  text-decoration: none;
}

a.active {
  text-decoration: underline;
}

@media (hover) {
  a:hover {
    color: #000;
    opacity: 0.7;
  }
  a.text:hover {
    color: #000;
    text-decoration: underline;
  }
}
.line-clamp-1 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.caption {
  font-size: 0.9rem;
}

.callout {
  font-size: 0.75rem;
}

.secondary {
  opacity: 0.8;
}

/*# sourceMappingURL=site.css.map */