/* General Customizations */
html {
  background-color: white;
  color: grey;
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}
body {
  height: 100%;
  margin: 0;
}

/* Navbar Styling */
.navbar {
  background-color: #222;
  border-bottom: 2px solid #e60000;
}
.img {
  max-width: 100%;
}

.navbar-brand,
.nav-link {
  color: red !important;
  font-weight: bold;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
  color: #ff3333;
  text-decoration: underline;
}

.nav-link.active {
  font-weight: bold;
  text-decoration: none;
}

/* Header Styling */
header {
  color: red;
  padding: 100px 0;
  text-align: center;
  margin-top: 56px;
}

header.py-5 {
  padding-top: 56px !important;
}

header h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

/* Footer Styling */
footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid #e60000;
}

footer a {
  color: red;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Image Styling */
.responsive-img {
  max-width: 100%;
  height: auto;
}

/* Container Customizations */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Section Spacing */
section {
  margin-bottom: 60px;
}

/* Bootstrap Grid Enhancements */
.row {
  margin-bottom: 30px;
}

/* Typography Improvements */
h2 {
  font-size: 32px;
  font-weight: bold;
}

/* Equal size images for cards */
.equal-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card Styling */
.card {
  border-radius: 10px;
  overflow: hidden;
}

.card-body {
  background-color: #fff;
  border-top: 2px solid #ddd;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.card-text {
  color: #6c757d;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Carousel Container Styling */
.carousel-container {
  display: flex;
  justify-content: center; /* Horizontaal centreren */
  align-items: center; /* Verticaal centreren indien gewenst */
  padding: 20px 0;
}

/* Carousel Styling */
.carousel {
  width: 100%; /* Verklein de carousel tot 50% van de schermbreedte */
  max-width: 800px; /* Maximale breedte van 600px */
  max-height: 450px; /* Maximale hoogte van 300px */
  height: auto; /* Behoud de verhoudingen van de afbeeldingen */
  overflow: hidden; /* Verberg overbodige delen */
}

/* Carousel Images */
.carousel img {
  width: 100%; /* Zorg dat de afbeeldingen zich aanpassen aan de breedte van de carousel */
  height: auto; /* Behoud de aspect ratio van de afbeeldingen */
}

/* Mobile-friendly Adjustments */
@media (max-width: 768px) {
  header {
    padding: 80px 0;
  }

  .carousel {
    width: 90vw; /* Vergroot de carousel op kleinere schermen naar 90% van de breedte van het scherm */
  }

  .navbar-brand,
  .nav-link {
    font-size: 14px;
  }

  header h1 {
    font-size: 36px;
  }

  .container {
    padding: 10px;
  }
}
