:root {
  --off-white: #E3EAEB;
  --blue: #16252d;
  --tan: #221a14;
  --green: #242613;
  --dark: #27242B;
  --cta-block: #F7F4EF;
  --body-font: "Mina", sans-serif;
  --header-font: "Krona One", sans-serif;
}

* {
  transition: 0.2s;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #f7f7f7;
  color: var(--green);
  line-height: 1.8;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: var(--body-font);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--blue);
  font-family: var(--header-font);
}

h1 {
  text-align: center;
}

h2 {
  margin-bottom: 0;
}

p {
  margin: 0 0 .8em 0;
}

section {
  padding: 0 20px;
  max-width: 960px;
  width: 100%;
  margin: 22px auto;
}

section.full {
  padding: 0;
  max-width: 100%;
}

/* Fade-in + slide animations */
.fade-in {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeInUp 1.2s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallax sections */
.parallax {
  background-attachment: fixed;
}

/* Navigation */
nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav li {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav li a {
  padding: 15px;
}

nav li:hover {
  background: rgba(0, 0, 0, 0.3);
}

nav a.logo {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.35rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.2s;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.site .hero {
  max-height: 360px;
  height: 360px;
  position: relative;

}

.site .hero>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.site .hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.site .hero .site-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 100%;
}

.site .hero .site-branding h1 {
  color: white;
  text-shadow: 4px 4px 4px rgba(0,0,0,.2);
  z-index: 2;
  font-size: 56px;
  margin: 0;
}

/* Main Content */
.site-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* CTA */
section.cta {
  background: var(--cta-block);
  position: relative;
  width: 100vw;
  margin: 30px 0;
}

section.cta img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: auto;
}

section.cta .content {
  position: relative;
  margin-left: 400px;
  padding: 60px 20px;
  z-index: 2;
}

@media (max-width: 660px) {
  section.cta .content {
    padding: 20px;
    margin-left: 240px;
  }
}

@media (max-width: 500px) {
  section.cta .content {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 32px;
    margin: auto;
    margin: 20px;
  }

  section.cta .content p {
    font-weight: bold;
  }

  section.cta .content * {
    text-align: center;
  }
}

/* Footer */
footer {
  position: relative;
  line-height: 0;
}

footer img {
  line-height: 0;
}

.site-info {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--off-white);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 20px 0;
}

.site-info * {
  line-height: 22px;
  text-align: center;
}

footer a {
  color: var(--off-white);
  text-decoration: none ;
}

footer a:hover {
  text-decoration: underline;
}

.columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.columns>div {
  max-width: 48%;
  width: 100%
}

@media (max-width: 760px) {
  .columns {
    flex-direction: column;
  }

  .columns>div {
    max-width: 100%;
  }
}

.help h3 {
  margin-bottom: 0;
}

.help h2 {
  margin-bottom: 0;
}

.help>p {
  margin: 0;
}

.help .columns p {
  margin: 0;
}