@import "https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css";
@import "https://unpkg.com/aos@2.3.1/dist/aos.css";

:root {
  --primary-color: #ff715b;
  --secondary-color: #1effbc;
  --text-color: #56667a;
  --link-color: #3185fc;
  --font-name: "Roboto", sans-serif;
  --section-1-img: url("../images/kayaking.webp");
  --section-2-img: url("../images/lavendar.webp");
  --section-3-img: url("../images/nature.webp");
  --section-4-img: url("../images/white-waters.webp");
}

html,
body {
  padding: 0;
  margin: 0;

  font-family: var(--font-name) !important;
}

p {
  color: var(--text-color);
}

.navbar-menu.is-active {
  display: flex;
  justify-content: center;
  width: 100%;
  flex: 1 0;
  margin-bottom: 2rem;
}

.is-text {
  color: var(--text-color);
}

.is-secondary {
  color: var(--secondary-color) !important;
}

.button.is-primary {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.button.is-secondary {
  background-color: var(--secondary-color);
  color: #fff !important;
}

.button.is-light {
  color: var(--primary-color) !important;
}

.social {
  display: flex;
}

a.is-primary,
.social a {
  color: var(--link-color);
}

.is-full-height {
  min-height: 100vh;
}

.image-background {
  background: #fff center center no-repeat fixed;
  background-size: cover;
  min-height: 50vh;
  width: 100%;
  position: relative;
  padding-bottom: 2rem;
}

.image-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.image-background h3,
.image-background p {
  z-index: 2;
  max-width: 50%;
}

.section-1-image {
  background-image: var(--section-1-img);
}

.section-2-image {
  background-image: var(--section-2-img);
}

.section-3-image {
  background-image: var(--section-3-img);
}

.section-4-image {
  background-image: var(--section-4-img);
}

.is-primary {
  color: var(--primary-color) !important;
}

.box {
  margin-top: -2rem;
  padding-top: 3rem;
  position: relative;
  z-index: 5;
  min-height: 50vh;
  display: flex;
  flex: 1 0;
  flex-flow: column;
}

.is-full-width {
  width: 100%;
}

.is-flex-1 {
  flex: 1 0;
  width: 100%;
}

.is-flex-2 {
  flex: 2 0;
}

.is-flex-3 {
  flex: 3 0;
}

.is-row-reverse-touch {
  flex-direction: row-reverse;
}

.is-justify-content-center-touch {
  justify-content: center !important;
}

.is-justify-content-center > .is-align-self-flex-start,
.is-justify-content-center > .is-align-self-flex-end {
  align-self: center !important;
}

@media screen and (min-width: 769px) {
  .box > .is-flex p {
    max-width: 60%;
    margin: auto;
  }

  .navbar-menu {
    display: flex;
    justify-content: center;
    width: 100%;
    flex: 1 0;
  }

  .navbar-menu > .navbar-start {
    justify-content: center;
    display: flex;
    flex: 1 0;
    width: 100%;
  }

  .is-justify-content-flex-start.is-justify-content-center-touch {
    justify-content: flex-start;
  }
  .is-justify-content-flex-end.is-justify-content-center-touch {
    justify-content: flex-end;
  }

  .is-justify-content-center > .is-align-self-flex-start {
    align-self: flex-start !important;
  }
  .is-justify-content-center > .is-align-self-flex-end {
    align-self: flex-end !important;
  }
}
