/* ---------- BASE ---------- */

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f4f1e8;
  color: #111;
  line-height: 1.6;
}

/* ---------- Global elements ---------- */
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- LAYOUT ---------- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- NAV BASIS ---------- */

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

.nav-links a {
  font-family: "Poppins", sans-serif;
  margin: 0 1rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.logo {
  font-weight: bold;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

/* ---------- KLEUREN PER PAGINA ---------- */

body.home .site-header a,
body.home .logo,
body.home .nav-toggle {
  color: white;
}

body.inner .site-header a,
body.inner .logo,
body.inner .nav-toggle {
  color: cadetblue;
}



/* ---------- HOVER ---------- */

body.home .site-header a:hover,
body.home .logo:hover {
  color: #f7c95c;
  text-decoration: none;
}

body.inner .site-header a:hover,
body.inner .logo:hover {
  color: skyblue;
}

/* ---------- Sections ---------- */

.section {
  padding: 6rem 0;
}

.section h2 {
  font-size: 2.6rem;
  font-weight: 500;
}

.section p {
  max-width: 520px;

}


/* ---------- FOOTER ---------- */

.site-footer {
  padding: 4rem 0;
  border-top: 1px solid #ddd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-title {
  justify-self: start;
  text-align: left;
}

.footer-info {
  justify-self: start;
  text-align: left;
}

.footer-contact {
  justify-self: end;
  text-align: left;
}

.text-with-logo-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  
}

.text-with-logo-right p {
  margin: 0;
  max-width: 400px;
}

.text-with-logo-right img {
  width: 130px;  
  height: auto;
  flex-shrink: 0;
  margin-left: 2.5rem;  
  margin-top: -0.6rem;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    margin-right: 1.5rem;
  }

  .site-header {
    padding: 0 1.5rem;
  }

  body.inner .nav-links a {
    color: white;
  }

  body.home .nav-links a {
    color: white;
  }

  .nav-bar {
    padding: 1.5rem 0;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: cadetblue;
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .nav-links a {
    color: white;
  }

  .nav-links.active {
    display: flex;
  }
}








