/* Section template: */
/* ------ TITLE               --------------------------- */

/* ------------------------------------------------------ */

/* ------ General settings ------------------------------ */

body,
h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  /* font-family: Verdana, "Arial black"; */
  font-family: "Fjalla One", "Arial black";
  /* font-family: Helvetica, "Arial black"; */
  color: black;
  text-wrap: balance;
}

p {
  font-size: var(--base-font-size);
  font-family: 'Times New Roman', Times, serif;
}

button {
  font-family: 'Times New Roman', Times, serif;
}

body {
  background-attachment: fixed;
  background-image: linear-gradient(rgb(172, 212, 156), rgb(0, 49, 0));
  background-repeat: no-repeat;
  height: 100%;

  --nav-height: 50px;
  padding-top: var(--nav-height);

  --golden-ratio: 1.618;
  --base-heading-size: 4em;
  --base-font-size: 1em
}

main {
  height: 100vh;
  width: 100%;
}

h1 {
  font-size: var(--base-heading-size);
}

h2 {
  font-size: calc(var(--base-heading-size) / var(--golden-ratio));
}

h3 {
  font-size: calc(
    var(--base-heading-size) / var(--golden-ratio) / var(--golden-ratio)
  );
}

h4 {
  font-size: calc(
    var(--base-heading-size) / var(--golden-ratio) / var(--golden-ratio) /
      var(--golden-ratio)
  );
}


img {
  display: block;
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.container {
  padding: 0 1em;
}

section {
  padding: 4rem 0;
}

.white-page {
  width: 95%;
  background-color: white;
  margin: auto;
  height: auto;
  padding-bottom: 50px;
  min-height: 100vh;
}

.white-page section {
  padding: 30px 40px;
}

.white-page h1,
.white-page h2,
.white-page p {
  padding-bottom: 20px;
}

@media (min-width: 40em) {
  .split {
    display: flex;
    gap: 2em;
    justify-content: space-around;
  }
}

* {
  box-sizing: border-box;
}


/* ------------------------------------------------------ */

/* ------ Navbar              --------------------------- */

.navbar-container {
  position: fixed;
  top: 0;
  background-color: rgb(38, 38, 38);
  z-index: 1;
  width: 100%;
  height: var(--nav-height);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

li {
  float: left;
}

li a:hover:not(.active) {
  background-color: white;
}

.active {
  background-color: rgb(66, 146, 66);
}

li a,
.dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.1em;
}

li a:hover,
.dropdown:hover .dropbtn {
  background-color: white;
  color: rgb(38, 38, 38);
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover:not(.active) {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

button {
  background-color: rgb(38, 38, 38);
  border: 0;
  margin: 0;
}

/* ------------------------------------------------------ */

/* ------ Footer              --------------------------- */

footer {
  width: 100%;
  position: static;
  background-color: rgba(255, 255, 255, 0.8);
  flex-direction: row;
}

.footer-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  padding: 14px 16px;
  text-align: left;
}

.footer-col a {
  color: black;
  padding: 12px 0;
  text-decoration: none;
  display: block;
  text-align: left;
}

.footer-col h1 {
  font-size: var(--base-font-size);
}

.footer-col .icons-container {
  display: block;
}



/* ------------------------------------------------------ */

/* ------ Hero section        --------------------------- */

.large-text {
  font-family: Verdana;
  font-size: 2.5em;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("stock-images/pexels-weirdfish-2640604.jpg");
  /* width: 100%; */
  /* background-size: 70vh; */

  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text h1 {
  font-family: Verdana;
  color: white;
  font-size: 5em;
}

.hero-text p {
  font-family: "Fjalla One" "Arial black";
  font-size: 2em;
}

/* ------------------------------------------------------ */

/* ------ Profiles            --------------------------- */


@media (min-width: 40em) {
  .profile-container{
    display: flex;
    flex-direction: column;
    width: 47%;
    box-sizing: border-box;
  }
}

/* @media only screen and (max-width: 800px) {
  .profiles {
    flex-direction: column;
  }

  .profiles .profile-container {
    width: 100%;
    padding-top: 20px;
    flex-direction: row;
  }

  .profile-image {
    width: 50%;
  }

  .profile-text {
    width: 50%;
    flex-direction: row;
    padding: 20px 20px;
  }
} */

/* .profile-container {
  display: flex;
  flex-direction: column;
  width: 45%;
  box-sizing: border-box;
} */

.profile-image {
  box-sizing: border-box;
  /* display: flex; */
  object-fit: contain;
  /* margin: auto; */
}

.profile-image img {
  max-width: 100%;
  height: auto;
}

.profile-container h2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.profile-container p {
  padding-bottom: 20px;
}
/* ------------------------------------------------------ */

/* ------ Icons               --------------------------- */

.icons-container {
  display: flex;
  flex-direction: row;
  /* text-decoration: none; */
  gap: 20px;
}
.icons-container a,
.icons-container a:visited,
.icons-container a:active {
  text-decoration: none;
  font-size: 36px;
  color: black;
}
/* ------------------------------------------------------ */

/* ------ Scroll bar          --------------------------- */

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ------------------------------------------------------ */
