/* Fonts */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.ttf") format("truetype");
}

@font-face {
  font-family: "Gothic";
  src: url("../fonts/gothic.ttf") format("truetype");
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  font-family: "Gothic", Arial, sans-serif;
  font-weight: 500;
}

.content h2 {
  font-weight: 300;
}
h3 {
  font-size: 1.75em;
}

.has-bg-orange {
  background-color: #ffdeb6;
}

#footer {
  color: black;
}


/* Sun before headings */
h2.has-sun {
  z-index: 5;
  margin-left: 1.1em !important;
}

.has-sun::before {
  /* white circle outlined with gradient */
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  width: 1.5em;
  height: 1.5em;
  margin-top: -0.2em;
  margin-left: -1.5em;
  background-image: url("../img/circle.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: visible;
}

/* -------------------------------------------------------------------------------------------------------------------------- */

/* MARK: Header */

.logo-container {
  padding: 6px;
  height: 70px;
}
nav {
  z-index: 100;
  background: transparent !important;
}

.navbar-burger {
  float: right;
  background-color: white !important;
  border-radius: 99px !important;
  color: black !important;
  padding-left: 3.8em !important;
  padding-right: 2em !important;
  top: 1em;
  right: 1em;
}

.navbar-burger::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0.8em;
  border-radius: 99px;
  transition: opacity 0.2s ease-in-out;
  background: linear-gradient(
    45deg,
    rgba(253, 102, 3, 1),
    rgba(255, 165, 109, 1)
  );
}

.navbar-burger:hover {
  background: white;
}

@media screen and (max-width: 1023px) {

  .navbar-menu.is-active {
    margin-top: 80px !important;
    border-radius: 8px !important;
  }
}


@media screen and (min-width: 1023px) {
  .navbar-brand {
    width: 0;
  }

  .navbar-menu {
    height: 70px;
  }

  .navbar-start {
    background-color: white;
    border-radius: 99px;
    padding-left: 1em;
    padding-right: 1em;
  }

  body.scrolled .navbar-start {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.4s ease-in-out;
  }

  .navbar-start {
    margin: auto;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    transition: box-shadow 0.4s ease-in-out;
  }

  /* Styling for hover sun */

  a.navbar-item {
    padding-left: 16px;
    margin-right: 8px;
  }

  a.navbar-item::before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: -3px;
    border-radius: 99px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    background: linear-gradient(
      45deg,
      rgba(253, 102, 3, 1),
      rgba(255, 165, 109, 1)
    );
  }

  a.navbar-item:hover::before,
  a.navbar-item.active::before {
    opacity: 1;
    transition: opacity 0.1s ease-in-out;
  }

  a.navbar-item:hover {
    background-color: transparent;
  }

}

