/* Hero section adjustments */
.hero {
  min-height: 100vh; /* Ensure the Hero section takes at least the full viewport height */
  background: url('hero-foto.jpg') center/cover no-repeat; /* Adjust background */
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px; /* Add padding for smaller screens */
}

/* Adjust Hero section content for smaller screens */
@media (max-width: 768px) {
  .hero {
    min-height: auto; /* Allow the Hero section to grow dynamically */
    padding: 40px 20px; /* Add more padding for smaller screens */
  }

  .hero img {
    width: 90%; /* Make the logo responsive */
    height: auto; /* Maintain aspect ratio */
    max-width: 300px; /* Limit the maximum width */
  }

  .hero h1 {
    font-size: 1.8rem; /* Reduce font size for smaller screens */
  }

  .hero h4 {
    font-size: 1rem; /* Reduce font size for smaller screens */
  }

  .btn-same-width {
    width: 100%; /* Make buttons full-width on smaller screens */
    margin-bottom: 10px; /* Add spacing between buttons */
  }
}


body {
  margin: 0;
  font-family: Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

header {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  display: inline-block;
}

nav {
  float: right;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('hero-foto.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero .btn {
  background: #e63946;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
}

/* Specifieke kleur voor h1 in de hero sectie */
.hero h1.display-4 {
  color: black;  /* Verander naar de gewenste kleur (bijvoorbeeld zwart) */
}

/* Specifieke kleur voor h1 in de hero sectie */
.hero h4.lead {
  color: black;  /* Verander naar de gewenste kleur (bijvoorbeeld zwart) */
}


section {
  padding: 40px 0;
  background-color: white;
  margin-bottom: 10px;
}

#diensten ul {
  list-style: none;
  padding: 0;
}

#diensten li {
  margin: 10px 0;
  font-weight: bold;
}

.galerij img {
  width: 48%;
  margin: 1%;
  border-radius: 5px;
}

form input,
form textarea {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1em;
}

form button {
  background: #1d3557;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px 0;
}
.address {
  display: flex;
  align-items: flex-start; /* Zorgt ervoor dat alles netjes uitgelijnd is */
}

.bi-house-fill {
  font-size: 1.1rem; /* Grootte van het icoon */
  margin-right: 10px; /* Ruimte tussen icoon en tekst */
}

.details p {
  margin: 0; /* Verwijdert standaard marges om alles strak te houden */
}

.mobile {
  display: flex;
  align-items: flex-start; /* Zorgt ervoor dat alles netjes uitgelijnd is */
}

.bi-telephone-fill {
  font-size: 1.1rem; /* Grootte van het icoon */
  margin-right: 10px; /* Ruimte tussen icoon en tekst */
}

.details p {
  margin: 0; /* Verwijdert standaard marges om alles strak te houden */
}

.mail {
  display: flex;
  align-items: flex-start; /* Zorgt ervoor dat alles netjes uitgelijnd is */
}

.bi-envelope-fill {
  font-size: 1.1rem; /* Grootte van het icoon */
  margin-right: 10px; /* Ruimte tussen icoon en tekst */
}

.details p {
  margin: 0; /* Verwijdert standaard marges om alles strak te houden */
}

#reopenNewsButton {
  padding: 10px 20px; /* Match the padding of the other button */
  font-size: 1.25rem; /* Match the font size */
  line-height: 1.5; /* Match the line height */
}
/* Normalize styles for both buttons */
#reopenNewsButton,
.btn-same-width {
  font-size: 1rem !important; /* Ensure consistent font size */
  line-height: 1.5 !important; /* Ensure consistent line height */
  padding: 10px 20px !important; /* Ensure consistent padding */
}
/* Shared styles for both buttons */
.btn-same-width {
  font-size: 1rem; /* Normalize font size */
  line-height: 1.5; /* Normalize line height */
  font-family: Verdana, sans-serif; /* Ensure consistent font family */
}

/* Fully reset Bootstrap styles for btn-info and btn-primary */
.btn.btn-info.btn-same-width,
.btn.btn-primary.btn-same-width {
  all: unset; /* Reset all inherited styles */
  display: inline-block; /* Restore necessary styles */
  width: 250px; /* Set the same width for both buttons */
  padding: 10px 20px; /* Ensure consistent padding */
  text-align: center; /* Center the text */
  border-radius: 5px; /* Ensure consistent border radius */
  background-color: #e63946; /* Set the same background color */
  border: 2px solid #e63946; /* Set the same border color */
  color: white; /* Set the same text color */
  font-size: 1rem; /* Ensure consistent font size */
  line-height: 1.5; /* Ensure consistent line height */
  font-family: Verdana, sans-serif; /* Explicitly set the font family */
  cursor: pointer; /* Ensure the pointer cursor */
  text-decoration: none; /* Remove underline for links */
  box-sizing: border-box; /* Ensure consistent box model */
}

/* Hover styles for both buttons */
.btn.btn-info.btn-same-width:hover,
.btn.btn-primary.btn-same-width:hover {
  background-color: #d62839; /* Darker shade for hover effect */
  border-color: #d62839;
}

/* Responsive styles */
@media (max-width: 768px) {
  .btn-same-width {
    width: 100% !important; /* Make buttons full-width on smaller screens */
  }
}

.custom-button {
  background-color: #e63946; /* Change to your desired color */
  border-color: #e63946; /* Match the border color */
  color: white; /* Text color */
}

.custom-button:hover {
  background-color: #d62839; /* Darker shade for hover effect */
  border-color: #d62839; /* Match the hover border color */
}
.btn-primary {
  background-color: #e63946 !important; /* Your desired color */
  border-color: #e63946 !important;
  color: white !important;
}

.btn-primary:hover {
  background-color: #d62839 !important; /* Darker shade for hover effect */
  border-color: #d62839 !important;
}

/* nav button to title */
html {
  scroll-padding-top: 80px; /* Adjust this value to match your navbar height */
  scroll-behavior: smooth; /* Optional: Adds smooth scrolling */
}

/* WhatsApp Button Styling */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe57; /* Darker green on hover */
}

.whatsapp-button i {
  font-size: 1.5rem; /* Adjust icon size */
  margin-right: 10px; /* Space between icon and text */
}