body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  max-width:100vw;
}

h2, h3, h4 {
  color: #ff6f61;
}

.btn-primary {
  background-color: white;
  box-shadow: rgba(255, 111, 97, 0.35) 0 -25px 18px -14px inset, rgba(255, 111, 97, 0.25) 0 1px 2px, rgba(255, 111, 97, 0.25) 0 2px 4px, rgba(255, 111, 97, 0.25) 0 4px 8px, rgba(255, 111, 97, 0.25) 0 8px 16px, rgba(255, 111, 97, 0.25) 0 16px 32px;
  color: #e66457;
  cursor: pointer;
  border-radius: 100px;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  border: 0;
  font-size: 1rem;
  transition: all 0.5s;
}
.btn-primary:hover {
  background-color: #e66457;
  color: white;
  transform: scale(1.05);
}

/* Navigatiebalk */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 15;
  width: 100%;
}
.navbar .navbar-logo img {
  height: 50px;
}
.navbar .hamburger-menu {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar .hamburger-menu {
    display: block;
    z-index: 20;
  }
}
.navbar .navbar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.navbar .navbar-menu li {
  display: inline;
}
.navbar .navbar-menu a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}
.navbar .navbar-menu a:hover {
  color: #e66457;
}
@media (max-width: 768px) {
  .navbar .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0, 0, 0);
    padding: 4.5rem 1.5rem 1rem;
    z-index: -1;
  }
  .navbar .navbar-menu.active {
    display: flex;
  }
  .navbar .navbar-menu li {
    margin: 10px 0;
  }
  .navbar .navbar-menu a {
    font-size: 18px;
  }
}
.navbar .phone-button {
  background-color: white;
  border-radius: 100px;
  box-shadow: rgba(255, 111, 97, 0.35) 0 -25px 18px -14px inset, rgba(255, 111, 97, 0.25) 0 1px 2px, rgba(255, 111, 97, 0.25) 0 2px 4px, rgba(255, 111, 97, 0.25) 0 4px 8px, rgba(255, 111, 97, 0.25) 0 8px 16px, rgba(255, 111, 97, 0.25) 0 16px 32px;
  color: #e66457;
  cursor: pointer;
  padding: 7px 20px;
  font-size: 16px;
  border: 0;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.navbar .phone-button:hover {
  background-color: #e66457;
  color: white;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .navbar .phone-button {
    display: none;
  }
}
.navbar .contact-lang {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background: url(" ../images/rijschool_foto.webp") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.hero .hero-content .hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero .hero-content .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.beschrijving {
  margin: 3rem 0;
}
.beschrijving h2 {
  text-align: center;
}
.beschrijving p {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.beschrijving img {
  width: 100%;
  display: block;
}

.stats {
  background: url("../images/rijschool_foto.webp") no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
  padding: 5rem 0;
  min-height: 20rem;
}
.stats .bg-shadow {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats .bg-shadow .stats-container {
  display: flex;
  gap: 1rem;
}
.stats .bg-shadow .stats-container .stats-box {
  padding: 1.5rem;
  background-color: white;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}
.stats .bg-shadow .stats-container .stats-box:hover {
  transform: translateY(-10px);
}
@media (max-width: 992px) {
  .stats .bg-shadow .stats-container {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .stats {
    min-height: 32rem;
  }
}
@media (max-width: 500px) {
  .stats {
    min-height: 35rem;
  }
}

.form-section {
  width: 100%;
  background: white;
  padding: 20px 0;
  border-radius: 10px;
  text-align: center;
}
.form-section h2 {
  margin-bottom: 15px;
  color: #ff6f61;
}
.form-section label {
  display: block;
  text-align: left;
  font-weight: bold;
  margin-top: 10px;
}
.form-section input, .form-section select, .form-section textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.form-section textarea {
  resize: vertical;
  min-height: 100px;
}
.form-section input[type=submit] {
  background: #ff6f61;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 10px;
  margin-top: 15px;
}
.form-section input[type=submit]:hover {
  background-color: #e66457;
}

.packages .card {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  margin-bottom: 2rem;
}
.packages .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.packages .card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.packages .card .card-body .prijs h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #28a745;
  margin-top: 1rem;
}
.packages .card .card-body ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.packages .card .card-body li {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.packages .card .card-body i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.packages .col-md-4:nth-child(2) .card {
  border: 1px solid #ff0000;
}

.contact-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}
.contact-section .contact-info .form-group {
  margin-bottom: 15px;
}
.contact-section .contact-info .form-group label {
  display: block;
  margin-bottom: 5px;
}
.contact-section .contact-info .form-group input,
.contact-section .contact-info .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-section .contact-info button {
  background-color: #ff6f61;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.contact-section .contact-info button:hover {
  background-color: #e66457;
  transform: scale(1.05);
}
.contact-section .info-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.contact-section .info-item i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #ff6f61;
}
.contact-section .info-item a {
  color: #000;
  text-decoration: none;
}
.contact-section .info-item a:hover {
  color: #ff6f61;
}
.contact-section .opening-hours {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 5px;
}
.contact-section .opening-hours h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.contact-section .opening-hours ul {
  list-style: none;
  padding: 0;
}
.contact-section .opening-hours ul li {
  margin-bottom: 10px;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem 0 0;
}
footer a {
  text-decoration: none;
  color: white;
  text-align: left;
}
footer a:hover {
  color: #e66457;
}
footer .contact, footer .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .contact p, footer .contact a, footer .menu p, footer .menu a {
  margin: 0.25rem 0;
}
footer .copyright {
  background-color: #333;
}
footer .footer-main-content {
  padding: 1rem 2rem;
}
footer .copyright {
  padding: 1rem 2rem;
}
footer .copyright p {
  margin: 0;
}/*# sourceMappingURL=main.css.map */