/* Import Roboto font from Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
/* Universal header color */
h1, h2, h3 {
  color: #313c8d;
}
/* Hamburger menu styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
}
.menu-toggle .bar {
  display: block;
  width: 32px;
  height: 4px;
  margin: 5px 0;
  background: #313c8d;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 1200px) {
  .main-menu ul.menu-open > li:first-child {
    display: none;
  }
  .main-menu ul {
    display: none;
  }
  .main-menu .menu-toggle {
    display: flex;
  }
  .main-menu ul.menu-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 4px 16px rgba(49,60,141,0.12);
    z-index: 9999;
    padding: 0;
    box-sizing: border-box;
    overflow-x: auto;
  }
  .main-menu ul.menu-open li {
    margin: 0;
    text-align: left;
    padding: 0 5vw;
    border-bottom: 1px solid #e3f7ee;
    word-break: break-word;
    white-space: normal;
    max-width: 90vw;
  }
  .main-menu ul.menu-open a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    /* font-size unchanged for mobile */
  }
}
/* Logo in menu bar (French version) */
.top-logo {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 12px 0 0;
  padding: 0;
}
/* Shadow above menu bar when banner is visible */
.main-menu.menu-shadow {
  box-shadow: 0 -6px 16px -6px #68ba82;
  z-index: 1000;
}
ul {
  margin-bottom: 1.2em;
}
ul li {
  margin-bottom: 0.7em;
}
/* Brochure download button */
.brochure-btn {
  display: inline-block;
  background: #68ba82;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  width: 85% ;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(33,122,60,0.07);
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.brochure-btn:hover {
  background: #313c8d;
  color: #fff;
}
/* Dark grey video placeholder rectangles */
.video-thumb.video-placeholder {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  width: 280px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 12px;
}
.video-placeholder-inner {
  width: 100%;
  height: 100%;
  background: #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.video-thumb.video-placeholder:hover .video-placeholder-inner {
  box-shadow: 0 0 0 4px #68ba82;
}
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(0deg, #68ba828a 0%, #ffffff 85%);
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
}

.banner-container {
  position: relative;
  width: 100%;
  height: calc(120vw*0.25);
  max-height: 450px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
}

.top-banner {
  max-width: 120vw;
  max-width: 1800px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: calc(120vw*0.25);
  max-height: 450px;
  object-fit: contain;
  display: block;
  transition: opacity 0.5s;
  margin: 0 auto;
}

.ugent-logo {
  height: 200px;
  width: auto;
  display: block;
  transition: height 0.3s;
}
.ugent-logo-fixed {
  position: fixed;
  top: 0;
  left: 0;
  height: 68px;
  z-index: 100;
  padding: 0px 32px;
}

.banner-left {
  position: fixed;
  top: 0;
  left: 32px;
  height: 80px;
  display: flex;
  align-items: flex-start;
  z-index: 100;
}

.banner-right {
  position: absolute;
  top: 24px;
  right: 32px;
  display: flex;
  align-items: center;
  z-index: 101;
}

.language-select {
  background: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 1rem;
  box-shadow: none;
  transition: opacity 0.5s;
}

.language-select select {
  font-size: 1rem;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 8px;
}

.language-select option {
  font-size: 1rem;
}

.content {
  max-width: 800px;
  margin: 100px auto 0 auto;
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.select-box {
  width: 320px;
  height: 150px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  color: #313c8d;
  font-weight: bold;
  border-radius: 10px;
  border: 2px solid #313c8d;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}
.select-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(33,122,60,0.15);
  border-color: #68ba82;
  color: #68ba82;
}

.block-matrix {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-top: 64px;
}
.welcome {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 32px;
}
.campaign-title {
  color: #313c8d;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.campaign-date {
  color: #313c8d;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1em;
}
.campaign-subtitle {
  color: #68ba82;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}
.block-row {
  display: flex;
  gap: 40px;
}

@media (max-width: 800px) {
  .block-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .select-box {
    width: 90vw;
    max-width: 340px;
  }
}

.main-menu {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-menu li {
  margin: 0 8px;
}
.main-menu ul > li:first-child {
  margin-right: auto;
}

.main-menu a {
  display: block;
  color: #313c8d;
  text-decoration: none;
  padding: 24px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.main-menu a:hover {
  background: #ffffff;
  color: #68ba82;
}

.custom-lang-select {
  position: relative;
}
.lang-btn {
  background: #fff;
  border: none;
  padding: 0px 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(33,122,60,0.07);
  min-width: 140px;
  z-index: 999;
}
.lang-dropdown.show {
  display: block;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #313c8d;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}
.lang-option:hover {
  background: #bbbbbb;
}

.language-fixed {
  position: fixed;
  top: 16px;
  right: 32px;
  z-index: 200;
}

.campaign-pictures {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin: 48px 0 32px 0;
}
.campaign-img {
  max-width: 640px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

@media (max-width: 900px) {
  .campaign-img {
    max-width: 90vw;
    width: 100%;
    height: auto;
  }
}

.site-footer {
  text-align: center;
  color: #555;
  font-size: 0.95rem;
  padding: 24px 0 12px 0;
  background: transparent;
}

.zorgverleners-hero {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 64px;
  margin: 32px auto 24px auto;
  max-width: 960px;
  text-align: left;
}
.campaign-title {
  color: #313c8d;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
}
.campaign-date {
  color: #313c8d;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1em;
  text-align: center;
}
.zorgverleners-doelstellingen {
  background: #e3f7ee;
  border-radius: 8px;
  padding: 16px 24px;
  margin: 24px 0;
  text-align: left;
}
.campagne-materiaal {
  max-width: 1100px;
  margin: 32px auto;
}
.materiaal-tiles {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.tile {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px;
  min-width: 240px;
  max-width: 480px;
  flex: 1 1 260px;
}
.tile-full {
  width: 100%;
  max-width: 100%;
  margin-left: calc(-50% + 50%);
  margin-right: calc(-50% + 50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tools-professionals {
  max-width: 1100px;
  margin: 32px auto;
}
.tools-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.tools-columns > div {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px;
  min-width: 320px;
  max-width: 470px;
  flex: 1 1 260px;
}
.meer-weten {
  max-width: 1025px;
  margin: 32px auto;
  text-align: center;
  font-size: 1.1rem;
}
.meer-weten a {
  color: #0055a4;
  font-weight: bold;
  text-decoration: underline;
}

.podcast-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.podcast-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e3f7ee;
  color: #000000;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(33,122,60,0.07);
  transition: background 0.2s, color 0.2s;
  width: 85%;
  min-width: 0;
}
.podcast-btn:hover {
  background: #c2e5d6;
  color: #003366;
}
.podcast-logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  margin-right: 4px;
}
.podcast-logo img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Over page columns */
.over-columns {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: stretch;
  margin: 32px 0 32px 0;
  flex-wrap: wrap;
}
.over-col {
  flex: 1 1 260px;
  background: #e3f7ee;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  padding: 32px 20px 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  max-width: 340px;
}
.over-col img {
  display: block;
  margin: 0 auto 18px auto;
  max-width: 120px;
  height: auto;
}
.over-col p {
  margin: 0;
  font-size: 1.08rem;
  color: #222;
}
.over-col small {
  color: #555;
}
@media (max-width: 800px) {
  .over-columns {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .over-col {
    max-width: 95vw;
    min-width: 0;
    padding: 24px 8vw 18px 8vw;
  }
}

/* Contact page container styling */
.contact-container {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(33,60,141,0.08);
  max-width: 900px;
  margin: 48px auto;
  padding: 40px 32px;
  flex-wrap: wrap;
}
.contact-form {
  flex: 2;
  min-width: 280px;
  padding-right: 16px;
}
.contact-form h1 {
  color: #313c8d;
  font-size: 2rem;
  margin-bottom: 12px;
}
.contact-form label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #313c8d;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #68ba82;
  border-radius: 8px;
  margin-bottom: 12px;

  font-size: 1rem;
  background: #f7faf9;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #313c8d;
  outline: none;
}
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
  font-family: inherit;
}
.contact-form button[type="submit"] {
  background: #68ba82;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(33,122,60,0.07);
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
}
.contact-form button[type="submit"]:hover {
  background: #313c8d;
  color: #fff;
}
.privacy {
  font-size: 0.95em;
  color: #555;
  margin-top: 1em;
  margin-bottom: 1em;
}
.contact-info {
  flex: 1;
  min-width: 220px;
  background: #e3f7ee;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(33,122,60,0.07);
  color: #222;
}
.contact-info h2 {
  color: #313c8d;
  font-size: 1.2rem;
  margin-bottom: 32px;
}
.contact-info h3 {
  color: #000000;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.contact-info a {
  color: #0055a4;
  text-decoration: underline;
  word-break: break-all;
}
@media (max-width: 700px) {
  .contact-container {
    flex-direction: column;
    padding: 18px;
  }
  .contact-info {
    margin-top: 24px;
    padding: 24px 12px;
  }
}

/* Contact form row for name fields */
.form-row {
  display: flex;
  row-gap: 18px;
}
.form-group {
  flex: 1 1 110px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
