@import url("https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-1: rgb(235, 232, 222);
  --color-2: rgb(62, 113, 52);
  --color-3: rgb(183, 184, 165);
  --color-4: rgb(0, 0, 0);
  --font-1: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
  --font-2: "National Park", sans-serif;
  --font-3: "Noto Sans", sans-serif;
  --image-1: url("/images/Sally-met-wegwijzer.jpg");
  --image-2: url("/images/Zwalmvalei.jpg");
  --image-3: url("/images/Foto-Vlaamse-ardennen.jpg");
  --image-4: url("/images/sally-rugzak.jpg");
  --image-5: url("/images/hands.jpg");
}

:root {
  --color-1: rgb(235, 232, 222);
  --color-2: rgb(62, 113, 52);
  --color-3: rgb(183, 184, 165);
  --color-4: rgb(0, 0, 0);
  --font-1: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
  --font-2: "National Park", sans-serif;
  --font-3: "Noto Sans", sans-serif;
  --image-1: url("/images/Sally-met-wegwijzer.jpg");
  --image-2: url("/images/Zwalmvalei.jpg");
  --image-3: url("/images/Foto-Vlaamse-ardennen.jpg");
  --image-4: url("/images/sally-rugzak.jpg");
  --image-5: url("/images/hands.jpg");
}

html, body {
  background-color: var(--color-1);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===============================
   HEADER
   =============================== */
header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--color-3);
  height: 8rem;
  margin-bottom: 5rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-bottom: 6px solid var(--color-2);
  border-left: 6px solid var(--color-2);
  border-right: 6px solid var(--color-2);
  padding: 0 2rem;
}

/* ===============================
   TEXT ELEMENTS
   =============================== */
p {
  color: var(--color-4);
  font-size: 18px;
  font-family: var(--font-3);
  line-height: 1.8;
  letter-spacing: 1.5px;
  word-spacing: 4px;
  text-align: start;
}

a {
  color: var(--color-2);
  text-decoration: none;
}

a:hover {
  color: var(--color-3);
}

/* ===============================
   NAVIGATION
   =============================== */
nav {
  width: 40%;
  margin: 4rem;
  display: flex;
  justify-content: space-around;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-3);
}

nav a {
  color: var(--color-1);
}

nav a:hover {
  color: var(--color-2);
}

nav a.active {
  color: var(--color-2);
  font-weight: bold;
}

/* ===============================
   QUOTES
   =============================== */
.quote {
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  font-family: var(--font-2);
  color: var(--color-2);
  text-align: center;
  margin: 2rem;
}

/* ===============================
   BUTTONS
   =============================== */
.copy-button {
  background-color: var(--color-2);
  color: var(--color-1);
  border: none;
  border-radius: 5px;
  padding: 0.2rem 0.5rem;
  margin-left: 1rem;
  cursor: pointer;
  transition: background-color 0.1s;
}

.copy-button:hover {
  background-color: var(--color-3);
}

/* ===============================
   LISTS
   =============================== */
ul {
  list-style-type: circle;
  color: var(--color-4);
}

/* ===============================
   USER IMAGE
   =============================== */
#user-img {
  display: none;
  width: 12rem;
  margin-top: 8rem;
  margin-right: 1rem;
  margin-left: 1rem;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 5px solid var(--color-2);
}

/* ===============================
   TITLE
   =============================== */
#title {
  display: flex;
  align-items: center;
  width: inherit;
}
#title p {
  font-family: var(--font-3);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-1);
}

/* ===============================
   CONTACT
   =============================== */
#contact p {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-2);
}
#contact .contact-group {
  display: flex;
  margin: 1em 0;
}

/* ===============================
   MAIN SECTIONS
   =============================== */
main {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
main .frame {
  display: flex;
  margin: 4rem 3rem;
  background-image: var(--image-2);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px 0 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  border: 8px solid var(--color-2);
  scroll-snap-align: center;
  /* Tablet (max-width: 1024px) */
  /* Mobile (max-width: 768px) */
}
main .frame .picture {
  height: 40rem;
  margin: 2rem;
  border-radius: 8px;
}
main .frame .article {
  width: 50%;
  height: 40rem;
  margin: 2rem;
  padding: 2rem;
  background-color: var(--color-1);
  border-radius: 8px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
main .frame .article .title {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-2);
  text-align: center;
  margin-bottom: 0.1em;
}
main .frame .article .text {
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  main .frame {
    flex-direction: column;
    align-items: center;
  }
  main .frame .picture {
    width: 80%;
    height: 30rem;
    margin: 1rem 0;
  }
  main .frame .article {
    width: 80%;
    height: auto;
    margin: 1rem 0;
    padding: 1.5rem;
  }
  main .frame .article .title {
    font-size: 28px;
  }
  main .frame .article .text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  main .frame .picture {
    display: none;
  }
  main .frame .article {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem;
    border-radius: 0;
  }
  main .frame .article .title {
    font-size: 24px;
  }
  main .frame .article .text {
    font-size: 15px;
  }
}

.index #section-1 {
  display: flex;
  margin: 4rem 3rem;
  scroll-snap-align: center;
  /* Tablet (max-width: 1024px) */
  /* Mobile (max-width: 768px) */
}
.index #section-1 .picture {
  background-image: var(--image-3);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  height: 40rem;
  flex-grow: 1;
  margin: 2rem;
  border-radius: 8px;
}
.index #section-1 .article {
  width: 50%;
  height: 40rem;
  margin: 2rem;
  padding: 2rem;
  border-radius: 8px;
}
.index #section-1 .article .title {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-2);
  color: var(--color-2);
  text-align: center;
  margin-bottom: 2rem;
}
.index #section-1 .article .sub-title {
  font-family: var(--font-1);
}
.index #section-1 .article .text {
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-4);
}
@media (max-width: 1024px) {
  .index #section-1 {
    flex-direction: column;
    align-items: center;
  }
  .index #section-1 .picture {
    width: 80%;
    height: 30rem;
    margin: 1rem 0;
  }
  .index #section-1 .article {
    width: 80%;
    height: auto;
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .index #section-1 .article .title {
    font-size: 28px;
  }
  .index #section-1 .article .text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .index #section-1 {
    flex-direction: column;
    margin: 0;
  }
  .index #section-1 .picture {
    display: none;
  }
  .index #section-1 .article {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem;
  }
  .index #section-1 .article .title {
    font-size: 24px;
  }
  .index #section-1 .article .text {
    font-size: 16px;
    text-align: start;
  }
}
.index #section-2 {
  display: flex;
  margin: 4rem 3rem;
  scroll-snap-align: center;
  /* Tablet (max-width: 1024px) */
  /* Mobile (max-width: 768px) */
}
.index #section-2 .picture {
  background-image: var(--image-1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  height: 40rem;
  flex-grow: 1;
  margin: 2rem;
  border-radius: 8px;
}
.index #section-2 .article {
  width: 50%;
  height: 40rem;
  margin: 2rem;
  padding: 2rem;
  border-radius: 8px;
}
.index #section-2 .article .title {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-2);
  color: var(--color-2);
  text-align: center;
  margin-bottom: 2rem;
}
.index #section-2 .article .sub-title {
  font-family: var(--font-1);
}
.index #section-2 .article .text {
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-4);
}
@media (max-width: 1024px) {
  .index #section-2 {
    flex-direction: column;
    align-items: center;
  }
  .index #section-2 .picture {
    width: 80%;
    height: 30rem;
    margin: 1rem 0;
  }
  .index #section-2 .article {
    width: 80%;
    height: auto;
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .index #section-2 .article .title {
    font-size: 28px;
  }
  .index #section-2 .article .text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .index #section-2 {
    flex-direction: column;
    margin: 0;
  }
  .index #section-2 .picture {
    display: none;
  }
  .index #section-2 .article {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem;
  }
  .index #section-2 .article .title {
    font-size: 24px;
  }
  .index #section-2 .article .text {
    font-size: 16px;
    text-align: start;
  }
}
.index #section-3 {
  display: flex;
  margin: 4rem 3rem;
  scroll-snap-align: center;
  /* Tablet (max-width: 1024px) */
  /* Mobile (max-width: 768px) */
}
.index #section-3 .picture {
  background-image: var(--image-2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  height: 40rem;
  flex-grow: 1;
  margin: 2rem;
  border-radius: 8px;
}
.index #section-3 .article {
  width: 50%;
  height: 40rem;
  margin: 2rem;
  padding: 2rem;
  border-radius: 8px;
}
.index #section-3 .article .title {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-2);
  color: var(--color-2);
  text-align: center;
  margin-bottom: 2rem;
}
.index #section-3 .article .sub-title {
  font-family: var(--font-1);
}
.index #section-3 .article .text {
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-4);
}
@media (max-width: 1024px) {
  .index #section-3 {
    flex-direction: column;
    align-items: center;
  }
  .index #section-3 .picture {
    width: 80%;
    height: 30rem;
    margin: 1rem 0;
  }
  .index #section-3 .article {
    width: 80%;
    height: auto;
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .index #section-3 .article .title {
    font-size: 28px;
  }
  .index #section-3 .article .text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .index #section-3 {
    flex-direction: column;
    margin: 0;
  }
  .index #section-3 .picture {
    display: none;
  }
  .index #section-3 .article {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem;
  }
  .index #section-3 .article .title {
    font-size: 24px;
  }
  .index #section-3 .article .text {
    font-size: 16px;
    text-align: start;
  }
}

.aanbod #section-1 {
  display: flex;
  margin: 4rem 3rem;
  scroll-snap-align: center;
  /* Tablet (max-width: 1024px) */
  /* Mobile (max-width: 768px) */
}
.aanbod #section-1 .picture {
  background-image: var(--image-1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  height: 40rem;
  flex-grow: 1;
  margin: 2rem;
  border-radius: 8px;
}
.aanbod #section-1 .article {
  width: 50%;
  height: 40rem;
  margin: 2rem;
  padding: 2rem;
  border-radius: 8px;
}
.aanbod #section-1 .article .title {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-2);
  color: var(--color-2);
  text-align: center;
  margin-bottom: 2rem;
}
.aanbod #section-1 .article .sub-title {
  font-family: var(--font-1);
}
.aanbod #section-1 .article .text {
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-4);
}
@media (max-width: 1024px) {
  .aanbod #section-1 {
    flex-direction: column;
    align-items: center;
  }
  .aanbod #section-1 .picture {
    width: 80%;
    height: 30rem;
    margin: 1rem 0;
  }
  .aanbod #section-1 .article {
    width: 80%;
    height: auto;
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .aanbod #section-1 .article .title {
    font-size: 28px;
  }
  .aanbod #section-1 .article .text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .aanbod #section-1 {
    flex-direction: column;
    margin: 0;
  }
  .aanbod #section-1 .picture {
    display: none;
  }
  .aanbod #section-1 .article {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem;
  }
  .aanbod #section-1 .article .title {
    font-size: 24px;
  }
  .aanbod #section-1 .article .text {
    font-size: 16px;
    text-align: start;
  }
}

.practical #section-1 {
  display: flex;
  margin: 4rem 3rem;
  scroll-snap-align: center;
  /* Tablet (max-width: 1024px) */
  /* Mobile (max-width: 768px) */
}
.practical #section-1 .picture {
  background-image: var(--image-1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  height: 40rem;
  flex-grow: 1;
  margin: 2rem;
  border-radius: 8px;
}
.practical #section-1 .article {
  width: 50%;
  height: 40rem;
  margin: 2rem;
  padding: 2rem;
  border-radius: 8px;
}
.practical #section-1 .article .title {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-2);
  color: var(--color-2);
  text-align: center;
  margin-bottom: 2rem;
}
.practical #section-1 .article .sub-title {
  font-family: var(--font-1);
}
.practical #section-1 .article .text {
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-4);
}
@media (max-width: 1024px) {
  .practical #section-1 {
    flex-direction: column;
    align-items: center;
  }
  .practical #section-1 .picture {
    width: 80%;
    height: 30rem;
    margin: 1rem 0;
  }
  .practical #section-1 .article {
    width: 80%;
    height: auto;
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .practical #section-1 .article .title {
    font-size: 28px;
  }
  .practical #section-1 .article .text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .practical #section-1 {
    flex-direction: column;
    margin: 0;
  }
  .practical #section-1 .picture {
    display: none;
  }
  .practical #section-1 .article {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem;
  }
  .practical #section-1 .article .title {
    font-size: 24px;
  }
  .practical #section-1 .article .text {
    font-size: 16px;
    text-align: start;
  }
}
.practical #section-1 .article .title {
  text-align: start;
}
.practical #section-2 {
  display: flex;
  margin: 4rem 3rem;
  scroll-snap-align: center;
  /* Tablet (max-width: 1024px) */
  /* Mobile (max-width: 768px) */
}
.practical #section-2 .picture {
  background-image: var(--image-2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  height: 40rem;
  flex-grow: 1;
  margin: 2rem;
  border-radius: 8px;
}
.practical #section-2 .article {
  width: 50%;
  height: 40rem;
  margin: 2rem;
  padding: 2rem;
  border-radius: 8px;
}
.practical #section-2 .article .title {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-2);
  color: var(--color-2);
  text-align: center;
  margin-bottom: 2rem;
}
.practical #section-2 .article .sub-title {
  font-family: var(--font-1);
}
.practical #section-2 .article .text {
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-4);
}
@media (max-width: 1024px) {
  .practical #section-2 {
    flex-direction: column;
    align-items: center;
  }
  .practical #section-2 .picture {
    width: 80%;
    height: 30rem;
    margin: 1rem 0;
  }
  .practical #section-2 .article {
    width: 80%;
    height: auto;
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .practical #section-2 .article .title {
    font-size: 28px;
  }
  .practical #section-2 .article .text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .practical #section-2 {
    flex-direction: column;
    margin: 0;
  }
  .practical #section-2 .picture {
    display: none;
  }
  .practical #section-2 .article {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem;
  }
  .practical #section-2 .article .title {
    font-size: 24px;
  }
  .practical #section-2 .article .text {
    font-size: 16px;
    text-align: start;
  }
}

/* ===============================
   ANIMATIONS
   =============================== */
.hidden1 {
  opacity: 0;
  transition: all 2s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0%);
}

@media (reduced-motion) {
  .hidden1 {
    transition: none;
  }
}
/* ===============================
   RESPONSIVE DESIGN
   =============================== */
/* --- Tablet Styles (max-width: 1024px) --- */
@media (max-width: 1024px) {
  header {
    border-left: none;
    border-right: none;
  }
  header #title p {
    font-size: 22px;
    line-height: 1.4;
  }
  nav {
    width: 80%;
    margin: 2rem auto;
    font-size: 20px;
    justify-content: space-evenly;
  }
  #title p {
    font-size: 28px;
    text-align: center;
  }
  #user-img {
    width: 9rem;
    margin-top: 4rem;
  }
  .quote {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
}
/* --- Mobile Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  header {
    height: auto;
    padding: 1rem;
    flex-direction: column;
  }
  nav {
    flex-direction: column;
    width: 100%;
    margin: 1rem 0;
    gap: 1rem;
    text-align: center;
  }
  nav a {
    font-size: 18px;
  }
  #title {
    flex-direction: column;
    text-align: center;
  }
  #title p {
    font-size: 24px;
  }
  #user-img {
    width: 8rem;
    margin: 2rem auto;
    display: block;
  }
  .quote {
    font-size: 18px;
    margin: 1rem;
  }
  main {
    padding: 0 1rem;
  }
  .aanbod #section-1 {
    background-image: none;
    box-shadow: none;
    border: none;
  }
  .aanbod #section-1 .article {
    margin: 1rem 0;
    border: var(--color-2) 4px solid;
  }
  .aanbod #section-1 .article .text, .aanbod #section-1 .article p {
    font-size: 18px;
    font-family: var(--font-2);
    line-height: 1.4;
  }
  .practical #section-1 .article {
    margin: 1rem 0;
  }
  .practical #section-1 .article .title {
    text-align: center;
  }
  .practical #section-1 .article .text, .practical #section-1 .article p {
    font-size: 18px;
    font-family: var(--font-2);
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  .practical #section-1 .article .contact-group {
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
  }
  .practical #section-1 .article .contact-group .copy-button {
    height: 2rem;
    width: 100%;
    margin: 1rem 0;
  }
  p {
    font-size: 15px;
    text-align: center;
  }
  ul {
    padding-left: 1.5rem;
  }
  .picture {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
