/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sansation&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    --first-color: hsl(30, 20%, 25%); 
    --first-color-alt: hsl(25, 40%, 20%);
    --first-color-light: hsl(35, 50%, 70%);
    --first-color-lighten: hsl(35, 50%, 90%); 

    --second-color: hsl(200, 80%, 40%); /* Deep blue for water elements, giving a fresh, calming touch */

    --title-color: hsl(30, 20%, 20%); /* Rich earthy brown for titles to maintain readability and warmth */
    --text-color: hsl(30, 20%, 15%); /* Darker brownish-gray for main text, more contrast */
    --text-color-light: hsl(30, 20%, 40%); /* Darker brownish-gray for secondary text to increase legibility */

    --border-color: hsl(35, 50%, 70%); /* Soft greenish hue for borders, complementing the nature theme */
    --body-color: hsl(30, 20%, 90%); 
    --container-color1: hsl(150, 10%, 75%);
    --container-color2: hsl(60, 20%, 70%);


  

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Nunito', sans-serif;
  --heading-font: 'Quicksand', sans-serif;
  --heading-font2: 'Sansation', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}


/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--heading-font2);
}

ul {
  list-style: none;
}

a {
  position: relative;
  text-decoration: none;
  transition: .3s;
  color: var(--first-color);
}

a::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 0%; 
  height: 2px; 
  background-color: var(--text-color);
  transition: width 0.3s ease; 
}

/* Voorkom hover-lijn bij logo, vlaggen en knoppen */
a.logo-link::after,
.nav__flags a::after,
.contact-knop::after,
.viskaarten__card-button::after {
  display: none !important;
}

a:hover {
}

a:hover::after {
  width: 100%; 
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1600px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}


.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  color: var(--second-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/

nav.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--body-color);
  padding: 30px 0;
  position: relative;
}

/* Nieuwe wrappers voor betere positionering */
.nav__left,
.nav__center,
.nav__right {
  display: flex;
  align-items: center;
}

/* Center de navigatie-items */
.nav__center {
  flex: 1;
  justify-content: center;
}

/* Logo link */
.nav__left .logo-link {
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

/* Styling for logo */
.nav__logo .logo {
  width: 170px;
  height: auto;
  margin-right: 10px;
  border-radius: 5px;
}

/* Menu styling */
.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 80px;
}

.nav__item .nav__link {
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

/* Vlaggen rechts */
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Flags container */
.nav__flags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__flags .lang-option img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.2px solid #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.nav__flags .lang-option:hover img {
  transform: scale(1.15);
}



/* Hamburger Icon */
.nav__hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ========== RESPONSIVE MENU ========== */
@media screen and (max-width: 768px) {
  nav.container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__center {
    width: 100%;
    order: 2;
  }

  .nav__menu {
    display: none;
    flex-direction: column;
    align-items: center;
    margin: auto 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav__menu.open {
    display: flex;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav__right {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .nav__hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

/*=============== HAMBURGER MENU ===============*/

/* Hide the regular menu on small screens by default */
.nav__menu {
  display: flex;
}

/* Hide the regular menu on small screens */
.nav__hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Hamburger bars style */
.nav__hamburger div {
  width: 100%;
  height: 5px;
  background-color: var(--first-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile menu styling when active */
.nav__menu.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* Add a slight animation for the items when the menu is open */
.nav__menu.open .nav__item {
  margin: 10px 0;
  text-align: center;
}

/* Style the links inside the mobile menu */
.nav__menu.open .nav__link {
  font-size: 18px;
  padding: 10px;
}

/* ================== Media query for small screens ================== */
@media screen and (max-width: 768px) {
  /* Hide the regular nav menu */
  .nav__menu {
    display: none;
  }

  /* Show the hamburger icon on small screens */
  .nav__hamburger {
    display: block;
  }

  /* When the menu is open, show it */
  .nav__menu.open {
    display: flex;
  }

  .nav__flags {
    margin-left: 0; /* Remove margin for flags on small screens */
    margin-top: 10px; /* Adds spacing for better layout */
  }
}


/* ================ Hero Section Styles ==================== */
/* Basis styling hero sectie */
.hero {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero afbeelding styling */
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Hero content styling */
.hero__content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 1rem;
  max-width: 90%;
  margin: 0 auto;
}

/* Responsive aanpassingen */

/* Kleinere schermen */
@media (max-width: 768px) {
  .hero {
    height: 40vh;
  }
  .hero__content {
    max-width: 95%;
    font-size: 1rem;
  }
}

/* Nog kleinere schermen */
@media (max-width: 480px) {
  .hero {
    height: 30vh;
  }
  .hero__content {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}
/* =====================start text================= */
.start-text {
    padding: 2rem 0;
    margin-top: 3rem;
}

.start-text__container {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: center; 
    flex-direction: row;
    gap: 2rem;   
    max-width: 1000px;             
    flex-wrap: wrap;
    margin: 0 auto;          
    padding: 0 1rem;     
}

.start-text__intro {
    flex: 1 1 55%;
    max-width: 600px;
}

.start-text__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.start-text__description {
    font-size: 1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 0 1rem 0;
}

.start-text__image-wrapper {
    flex: 1 1 40%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.start-text__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive styling voor kleinere schermen */
@media screen and (max-width: 768px) {
    .start-text__container {
        flex-direction: column;
        text-align: center;
    }

    .start-text__intro,
    .start-text__image-wrapper {
        max-width: 100%;
        flex: none;
    }

    .start-text__image {
        max-width: 100%;
        margin-top: 1.5rem;
    }
}

/* ======================visregels=========================== */

.viskaarten {
    padding: 2rem 0;
}

.viskaarten__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.viskaarten__intro {
    margin-bottom: 3rem;
}

.viskaarten__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.viskaarten__description {
    font-size: 1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

#viskaarten__locatie {
    margin-top: 2rem;
    background-color: var(--container-color2);
    text-align: center;
}
/* ========================= visregel kaarten ==============================*/
.viskaarten__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.viskaarten__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--container-color1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.viskaarten__card:hover {
    transform: translateY(-5px);
}

.viskaarten__list {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.viskaarten__image {
    max-width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.viskaarten__card-title {
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
}

.viskaarten__card-description {
    font-size: var(--normal-font-size);
    margin-bottom: 3rem;
    color: var(--text-color-light);
    flex-grow: 1;
}

.viskaarten__card ul li i.fa-solid {
  margin-right: 10px;
  font-size: 20px;
  margin-bottom: 15px;
}


/* Responsive styling - Tablets (max 1024px) */
@media screen and (max-width: 1024px) {
  .viskaarten__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .viskaarten__card {
    padding: 1.5rem;
  }

  .viskaarten__image {
    height: 250px;
  }
}

/* Responsive styling - Smartphones (max 768px) */
@media screen and (max-width: 768px) {
  .viskaarten__description {
    padding: 0 1rem;
  }

  .viskaarten__card {
    padding: 1.25rem;
  }

  .viskaarten__image {
    height: 200px;
    object-fit: cover;
  }

  .viskaarten__card-button {
    padding: 12px 16px;
    width: 90%;
  }
}

/* Responsive styling - Extra small devices (max 480px) */
@media screen and (max-width: 480px) {
  .viskaarten__card {
    padding: 1rem;
  }

  .viskaarten__image {
    height: 180px;
  }

  .viskaarten__card-button {
    padding: 10px 14px;
  }
}

/*============================Visitekaartje dingetje================*/
.contact__title {
  text-align: center; /* Center the title */
  margin-top: 4rem; /* Space between the title and the grid */
}
.contact {
    display: flex;
    justify-content: center; /* Centers horizontally */
    margin-top: 2rem;
    height: 100vh; /* Full viewport height */
}

.contact h2,h4 {
    color: #1b5c4b !important;
    margin-bottom: 1rem;
    letter-spacing: 0.15em !important;
}

.underline-name {
    border-bottom: 2px solid #1b5c4b;
}

.contact-box {
    background-color: #fcf6e9;
    display: flex;
    flex-direction: column; /* logo bovenaan, inhoud eronder */
    align-items: center;
    height: 400px;
    width: 50%;
    text-align: center;
    border-radius: 2px;
    box-shadow: 15px 30px 10px rgba(0, 0, 0, 0.8);
    border: 2px solid #1b5c4b;
}

.contact-box img {
    margin-top: 3%;
    width: 300px;
    margin-bottom: 15px;
}

/* Nieuw: wrapper voor de twee personen naast elkaar */
.person-cards-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px; /* optioneel: ruimte aan de zijkanten */
    box-sizing: border-box;
}

.person-card {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
    text-align: center; /* naam en contact links uitlijnen */
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns text to the left */
    margin-top: 0.5rem; /* Adds spacing above the contact details */
}

.contact p, a {
    font-size: var(--small-font-size);
    color: #1b5c4b !important;
    line-height: 1.7rem;
    transition: color 0.3s ease-in-out;
}

.logo-icon {
    color: #1b5c4b !important;
    fill: #1b5c4b;
    font-style: normal !important;
    transition: color 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .fa-whatsapp {
    font-size: 1.3rem;
    margin-right: 13px;
}

.contact a {
    color: #1b5c4b;
    transition: color 0.3s ease-in-out;
}

.contact a:hover,
.contact a:hover .logo-icon {
    color: #0a2722 !important; 
}


/* =================== Responsive styles contact card =================== */

/* Mobile Styles (up to 480px) */
@media (max-width: 480px) {
  .contact {
      height: auto; /* Allow contact card to grow vertically */
      margin-top: 20px; /* Add some margin at the top */
      padding: 20px;
  }

  .contact-box {
      width: 90%; /* Make the contact box take more width on smaller screens */
      height: auto; /* Allow it to adjust dynamically */
  }

  .person-cards-wrapper {
      flex-direction: column; /* Stapel de kaarten onder elkaar */
      align-items: center;    /* Center de kaarten horizontaal */
  }

  .person-card {
      width: 100%; /* Neem volle breedte op mobiel */
      margin: 1rem 0;
      text-align: center; /* Centraal uitlijnen voor mobiel */
  }

  .contact-box img {
      width: 120px; /* Reduce image size */
  }

  .contact p, a, i {
      font-size: 0.9rem; /* Slightly reduce font size for small screens */
  }

  .contact h2, .contact h4 {
      margin-bottom: 0.5rem; /* Slightly decrease space between headings */
  }
}

/* Tablet Styles (from 481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .contact {
      height: auto; /* Allow contact card to grow vertically */
      margin-top: 20px; /* Add some margin at the top */
      padding: 20px;
  }

  .contact-box {
      width: 80%; 
      height: auto;
  }

  .person-cards-wrapper {
      flex-direction: column;
      align-items: center;
  }

  .person-card {
      width: 100%;
      margin: 1rem 0;
      text-align: center;
  }

  .contact-box img {
      width: 130px; 
  }

  .contact-details {
    margin-bottom: 25px;
  }

  .contact h2, .contact h4 {
      margin-bottom: 1rem;
  }
}

/* =================== Disclaimer Styling =================== */
.disclaimer {
  padding: 1.5rem 1rem;
}

.disclaimer__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer__text {
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  line-height: 1.6;
  font-style: italic;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .disclaimer__text {
    font-size: var(--small-font-size);
    padding: 0 1rem;
  }
}

/*===================================== Footer Styling =================================*/
.footer {
  color: #1b5c4b;
  padding: 2rem 1rem;
  font-size: var(--small-font-size);
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer__company,
.footer__contact,
.footer__links {
  flex: 1 1 250px;
}

.footer__links ul {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  text-decoration: none;
}

.footer__social a {
  color: #1b5c4b; 
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__social a:hover {
  color: #0a2722 !important; 
}

.footer__copyright {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: #888;
}



@media (max-width: 600px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 3rem;
  }
}