/* styles.css */

body {
  margin: 0;
  font-family: 'Monserrat', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #2f3489, #1e7ca2);
  color: white;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

header h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.3em;
}

header h1 span {
  color: #ffffff;
  font-weight: bold;
  display: inline-block;
}

header h2 {
  text-align: center;
  font-weight: normal;
  margin-top: 0;
}

contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.contact-info {
  font-size: 1.1rem;
}

.contact-info a {
  background-color: white;
  color: black;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.contact-info a:hover, .a:active {
  background-color: black;
  color: white;
}

.qr-code img {
  width: 100px;
  height: 100px;
}

.photos {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 30px 0;
}

.photos img {
  width: 32%;
  height: auto;
  border-radius: 8px;
}

.info h3 {
  color: #ffffff;
}

.info ul {
  list-style-type: disc;
  margin-left: 20px;
}

.info a:link, a:visited {
  background-color: white;
  color: black;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.info a:hover, a:active {
  background-color: black;
  color: white;
}


.logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.logos img {
  height: 80px;
  margin: 10px;
}

.video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  text-align: center; /* Dit zorgt dat ook de tekst gecentreerd is */
}

footer {
  text-align: center;
  margin-top: 40px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.social-icon img {
  display: block;
  margin: 5px auto;
  height: 100px;
}

.social-icon img:last-child {
  height: 100px;
}

.credit {
  font-size: 0.9rem;
  color: #aaa;
}

.credit a {
  color: white;
  text-decoration: none;
}

.credit a:hover {
  color: white;
  text-decoration: underline;
}
