@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem; }

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

html {
  font-size: 16px; }

body {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333; }

/* Headings */
h1 {
  font-size: 2.5rem;
  font-weight: 700; }

h2 {
  font-size: 2rem;
  font-weight: 700; }

h3 {
  font-size: 1.5rem;
  font-weight: 600; }

h4 {
  font-size: 1.25rem;
  font-weight: 600; }

h5 {
  font-size: 1.125rem; }

h6 {
  font-size: 1rem; }

/* Paragraphs */
p {
  font-size: 1rem;
  line-height: 1.6; }

/* Helpers */
.text-small {
  font-size: 0.875rem; }

.text-large {
  font-size: 1.125rem; }

/* Navbar styling */
.navbar {
  background-color: #fff;
  color: #000;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: padding 0.3s ease; }
  .navbar.shrink {
    padding: 0.25rem 1rem; }
    .navbar.shrink .logo img {
      max-height: 25px; }
  .navbar-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem; }

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -75px;
  left: 1rem;
  background: #072c3e;
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
  transition: top 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600; }
  .skip-link:focus {
    top: 1rem;
    color: #fff; }

h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus {
  outline: 2px dashed #E72168;
  outline-offset: 4px; }

.linkable-heading {
  position: relative; }
  .linkable-heading::after {
    position: absolute;
    left: -1.5em;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 0.9em;
    color: #E72168; }
  .linkable-heading:hover::after, .linkable-heading:focus::after {
    opacity: 1;
    cursor: pointer; }

/* Desktop menu */
.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-top: 0.5rem; }
  .nav-menu a.active-link {
    color: #E72168;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #E72168;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px; }

/* Mobile dropdown */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999; }
  .mobile-menu a.active-link {
    color: #E72168;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #E72168;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px; }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .mobile-menu .nav-item {
    text-align: center;
    padding: 10px; }

body.menu-open {
  overflow: hidden; }

/* Nav items */
.nav-item a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease-in-out; }
  .nav-item a:hover {
    color: #E72168; }

/* LOGO (nieuw schaalbaar systeem) */
.logo img {
  height: auto;
  width: auto;
  max-height: 40px;
  max-width: 180px;
  transition: max-height 0.3s ease; }

/* Contact button */
.contact-button {
  background-color: #E72168;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem;
  transition: background-color 0.3s ease-in-out; }
  .contact-button:hover {
    background-color: #bf1852;
    color: #fff; }

.desktop-contact {
  display: block;
  color: #fff; }

.contact-item {
  display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer; }
  .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #E72168;
    margin: 5px 0;
    transition: 0.4s; }

.mobile-menu .contact-button {
  color: #fff;
  text-decoration: none; }
  .mobile-menu .contact-button:hover, .mobile-menu .contact-button:focus {
    color: #fff; }

/* Tablet */
@media screen and (max-width: 800px) {
  .contact-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem; }
  .contact-info {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem auto;
    align-items: flex-start;
    text-align: left; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 1rem; }
    .nav-menu.active {
      display: flex; }
    .nav-menu .nav-item {
      text-align: center;
      padding: 10px; }
  .logo img {
    max-height: 30px;
    max-width: 140px; }
  .navbar {
    padding: 0.5rem 1rem; }
  .navbar-container {
    padding: 0 1rem; }
  .hamburger {
    display: flex;
    z-index: 2100; }
  .contact-item {
    display: block;
    text-align: center;
    margin-top: 10px; }
  .contact-button {
    display: block;
    text-align: center;
    width: 100%;
    padding: 1rem; }
  .desktop-contact {
    display: none; }
  .mobile-contact {
    display: block;
    text-align: center;
    padding: 1rem; }
  .mobile-menu {
    display: none; }
    .mobile-menu.active {
      display: block; } }

/* Small mobile */
@media screen and (max-width: 480px) {
  .navbar {
    padding: 0.4rem 0.75rem; }
  .navbar-container {
    padding: 0; }
  .logo img {
    max-height: 24px;
    max-width: 120px; }
  .hamburger {
    display: flex; }
  .contact-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem; }
  .contact-info,
  .contact-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
    padding: 1.5rem; }
  .contact-item {
    width: 100%;
    justify-content: flex-start; } }
