@font-face {
  font-family: gothamRoundedBold;
  src: url('../fonts/GothamRoundedBold.ttf');
}

@font-face {
  font-family: gothamRoundedLight;
  src: url('../fonts/gothamrounded-light.otf');
}

@font-face {
  font-family: gothamRoundedMedium;
  src: url('../fonts/gothamrounded-medium.otf');
}

@font-face {
  font-family: gothamRoundedBook;
  src: url('../fonts/gothamrounded-book.otf');
}

:root {
  font-family: gothamRoundedLight;
  --moovio-dark-green: rgb(65, 184, 192);
  --moovio-light-green: rgb(162, 235, 150);
  --moovio-light-grey: rgb(248, 250, 251);
  --moovio-medium-grey: rgb(204, 204, 204);
  --moovio-grey: rgb(137, 137, 137);
  --moovio-error: #fd6592;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0px;
}

h4 {
  font-size: 14px;
  text-align: center;
  padding-bottom: 30px;
  padding-top: 30px;
  margin: 0;
}

.dark-green-text {
  color: var(--moovio-dark-green);
}

.light-green-text {
  color: var(--moovio-light-green);
}

.dark-green-text,
.light-green-text {
  font-family: gothamRoundedMedium;
}

.moovio-btn {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 0;
  text-align: center;
  height: 45px;
  width: 200px;
  color: white;
  border-radius: 19px;
  border-width: 0px;
  cursor: pointer;
  font-family: gothamRoundedLight;
  font-size: 14px;
  background-image: linear-gradient(
    to right,
    var(--moovio-dark-green),
    var(--moovio-light-green)
  );
}

/* HEADER STYLE */
#header {
  font-size: 12px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 100%);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

#header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 0;
  height: auto;
  gap: 8px;
}

#header nav a {
  color: white;
  text-decoration: none;
  padding: 20px 10px;
}

#header span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: solid 2px rgba(255,255,255,0.6);
  color: white;
  font-size: 11px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s, background-color 0.2s;
}

#header span.active {
  opacity: 1;
  border-color: white;
  background-color: rgba(255,255,255,0.3);
}

#logo {
  height: 100px;
  padding: 10px 0;
}

/* HERO */
#hero {
  height: 100vh;
  background-image: url('../pictures/cover.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero h1 {
  color: white;
  font-family: gothamRoundedLight;
  font-size: 36px;
  font-weight: normal;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#hero h1 b {
  font-family: gothamRoundedBold;
}

/* INTRO */
#intro {
  text-align: center;
  padding: 40px 30px;
}

#intro p {
  font-size: 16px;
  color: var(--moovio-grey);
  font-family: gothamRoundedBook;
  margin: 6px 0;
}

/* MOTIVATION */
#motivation {
  text-align: center;
  padding: 40px 15%;
  background-color: var(--moovio-light-grey);
}

#motivation p {
  color: var(--moovio-grey);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BELIEF */
#belief {
  text-align: center;
  padding: 40px 30px;
}

#belief p {
  color: var(--moovio-grey);
  font-size: 13px;
  line-height: 1.7;
}

#belief span {
  font-family: gothamRoundedBold;
  font-size: 20px;
  background: -webkit-linear-gradient(
    var(--moovio-dark-green),
    var(--moovio-light-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DOWNLOAD */
.download {
  margin-top: 10px;
}

.download p {
  font-size: 12px;
  margin-bottom: 8px;
}

.download img {
  height: 40px;
  padding: 5px 4px 25px;
}

/* BELIEF + CONTACT side by side */
#belief-contact {
  display: flex;
  flex-direction: row;
  padding: 0 5%;
}

#belief-contact #belief {
  width: 50%;
  text-align: center;
  padding: 40px 40px 50px;
  border-right: 1px solid var(--moovio-light-green);
}

#belief-contact #contact {
  width: 50%;
  text-align: center;
  padding: 40px 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact p {
  color: var(--moovio-grey);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-email {
  font-family: gothamRoundedMedium;
  font-size: 18px;
  color: var(--moovio-dark-green);
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  padding: 40px 5% 20px;
  background-color: var(--moovio-light-grey);
}

footer img {
  height: 80px;
}

.footer-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-navigation-links {
  display: flex;
  align-items: center;
}

footer a {
  color: black;
  text-decoration: none;
  padding-left: 50px;
}

.external-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.external-links img {
  height: 50px;
}

.email-icon {
  filter: hue-rotate(120deg);
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--moovio-light-green);
  margin: 25px 10%;
}

.copyright {
  color: var(--moovio-grey);
  font-size: 10px;
  text-align: center;
}


@media only screen and (max-width: 768px) {
  #hero {
    height: 350px;
  }

  #hero h1 {
    font-size: 24px;
  }

  #motivation {
    padding: 40px 5%;
  }

  #belief-contact {
    flex-direction: column;
    padding: 0 5%;
  }

  #belief-contact #belief,
  #belief-contact #contact {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--moovio-light-green);
    padding: 30px 20px;
  }

  .footer-navigation {
    justify-content: space-around;
  }

  .footer-navigation-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-navigation-links > div:first-child {
    display: none;
  }

  footer a {
    padding-left: 0;
  }

  .external-links img {
    height: 35px;
  }
}
