html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-image: url("assets/privilege-background.png");
}

p,
a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: white;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  color: white;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}

.header-logo img {
  width: 300px;
  padding: 10px 0;
}

.header-nav {
  margin-right: 20px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style-type: none;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 200;
}

.nav-links li a:hover {
  color: #929292;
  transition: color 0.3s;
}

.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.banner-title h1 {
  font-size: 65px;
  font-weight: 400;
  color: white;
}

.banner-buttons {
  display: flex;
  gap: 80px;
}

.book-button {
  font-family: "Poppins", sans-serif;
  color: black;
  background-color: #eaeaea;
  padding: 10px 20px;
  border: none;
  font-size: 30px;
  font-weight: 600;
  border-radius: 10px;
}

.book-button:hover {
  background-color: #929292;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

.main-content {
  display: flex;
  flex-direction: column;
}

.over-ons,
.prijzen {
  padding: 0 20%;
}

.over-ons {
  margin-top: 20px;
  margin-bottom: 30px;
}

.over-ons-title h2 {
  font-size: 50px;
  font-weight: 600;
  font-style: normal;
  color: #f5f5f5;
  margin: 0;
}

.over-ons-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.over-ons-content p {
  margin: 0;
  flex: 1 1 320px;
}

.over-ons-content-text {
  flex: 1 1 420px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.over-ons-content-text p {
  font-size: 20px;
  font-weight: 200;
  color: #f5f5f5;
}

.over-ons-content img {
  flex: 1 1 320px;
  max-width: 520px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.prijzen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15) inset;
}

.prijzen p {
  margin: 0;
  color: #1a1a1a;
  font-size: 20px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

.prijzen-title h2 {
  margin: 20px 0 0;
  font-size: 50px;
  font-weight: 300;
  font-style: normal;
  color: black;
}

.card-container {
  display: flex;
  gap: 100px;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  margin: 0;
}

.card-title h3 {
  margin: 0;
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.card-options {
  display: flex;
  gap: 1rem;
}

.card-options p {
  margin: 0;
  color: #1a1a1a;
  font-size: 25px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

.card-info p {
  text-align: center;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

.contact-info h3 {
  margin: 0;
  font-size: 35px;
  font-weight: 600;
  font-style: normal;
  color: #f5f5f5;
}

.contact-info,
.sm-button-container {
  margin: 0 5%;
}

.contact-info p {
  margin: 0;
  color: #f5f5f5;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.contact-info h3 {
  margin: 0;
  color: #f5f5f5;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.sm-button-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sm-button-container h3 {
  margin: 0;
  color: #f5f5f5;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.sm-button-container a img:hover {
  filter: brightness(0.8);
  transition: filter 0.4s;
}

@media (max-width: 1733px) {
  .over-ons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .over-ons-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .over-ons-content p {
    flex: 1 1 250px;
  }

  .over-ons-content-text {
    max-width: 800px;
    text-align: center;
  }

  .over-ons-title {
    text-align: center;
  }
}

@media (max-width: 1500px) {
  .banner-title h1 {
    font-size: 50px;
  }

  .card-title h3 {
    font-size: 25px;
  }

  .card-services p {
    font-size: 20px;
  }

  .card-prices p {
    font-size: 20px;
  }

  .card-info p {
    font-size: 15px;
  }
}

@media (max-width: 1000px) {
  .banner-title h1 {
    text-align: center;
  }
}

@media (max-width: 925px) {
  .over-ons,
  .prijzen {
    padding: 0 20px;
  }

  .banner {
    padding: 30px 0;
  }

  .banner-title h1 {
    font-size: 40px;
  }

  .card-info {
    padding-bottom: 15px;
  }

  .header {
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }

  .over-ons-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .over-ons-title h2,
  .prijzen-title h2,
  .contact-info h3 {
    font-size: 30px;
  }

  .card {
    padding: 15px 0;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .card-info p {
    font-size: 16px;
  }
}

@media (max-width: 530px) {
  .banner {
    padding: 20px 0;
  }

  .contact {
    justify-content: center;
    gap: 20px 0;
  }

  .nav-links {
    gap: 15px;
  }

  .over-ons-content-text p,
  .contact-info p {
    font-size: 18px;
  }

  .nav-links li a {
    font-size: 14px;
  }

  .book-button {
    font-size: 22px;
    padding: 8px 16px;
  }

  .card-info p {
    font-size: 12px;
  }

  .sm-button-container a img {
    width: 80px;
  }
}

@media (max-width: 440px) {
  .header-logo img {
    width: 250px;
  }

  .banner-title h1 {
    font-size: 30px;
  }

  .over-ons-title h2,
  .prijzen-title h2,
  .contact-info h3 {
    font-size: 23px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links li a {
    font-size: 10px;
  }

  .over-ons-content-text p,
  .contact-info p {
    font-size: 16px;
  }

  .card-title h3 {
    font-size: 23px;
  }

  .card-services p {
    font-size: 15px;
  }

  .card-prices p {
    font-size: 15px;
  }

  .card-info p {
    font-size: 12px;
  }
}