body {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
}

header {
  background-color: #f9b74f;
  color: black;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed; 
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000; 
  transition: top 0.3s ease-in-out;
  box-sizing: border-box;
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .5);
}

header.hidden {
  top: -100px; 
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
}

header nav {
  display: flex;
  gap: 1rem;
  
}

header nav a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}

header nav a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("images/WhatsApp Image 2025-01-11 at 18.37.42.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 1;
}

.hero-text {
  position: absolute;
  color: #f9b74f;
  text-align: center;
  z-index: 2;
}

.hero-text h2 {
  margin: 0;
  font-size: 5rem;
}

.hero-text p {
  margin-top: 1rem;
  font-size: 2rem;
}

/* Contact Section */
#contact {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}



/* Two-column Layout */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: space-between;
}

/* Left Column - Form */

.contact-form {
  flex: 1;
  max-width: 400px;
  width: 100%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.contact-form form input,
.contact-form form textarea {
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 12px;
  border-radius: 5px;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #f9b74f;;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  width: 400px;
}

.contact-form button:hover {
  background: #c28b33;
}
/* Right Column - Contact Info */

.contact-info {
  flex: 1;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin: 10px 20px;
  
}

.contact-info i {
  font-size: 20px;
  color: #f9b74f;;
}

/* Social Icons */

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f9b74f;;
}

/* Footer */

footer {
  margin-top: 20px;
  font-size: 14px;
  color: #888;
}

/* Responsive Design */

@media (max-width: 768px) {
  .contact-content {
      flex-direction: column;
      align-items: center;
  }
}

/* Social Media Icons */
.social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.social-media-list li a {
  color: #fff;
  
}

.social-media-list li {
  position: relative; 
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(27,27,27);
  cursor: pointer; 
  transition: all .2s ease-in-out;
}

.social-media-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all .2s ease-in-out;
  pointer-events: none;
}



.social-media-list li:hover:after {
  opacity: 1;  
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}

.social-media-list li:hover a {
  color: #000;
}

.copyright {
  font: 200 14px 'Oswald', sans-serif;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
}

hr {
  border-color: rgba(255,255,255,.6);
}

/* Diensten Sectie */
.services-section {
  background-color: #000; /* Zwarte achtergrond */
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.services-section h1 {
  color: #f9b74f; /* Gele kleur */
  margin-bottom: 20px;
  font-size: 2rem;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Zorgt voor responsiviteit */
}

.service-item {
  background-color: #000;
  border: 2px solid #f9b74f; /* Geel kader */
  border-radius: 10px;
  padding: 20px;
  width: 400px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: scale(1.05); /* Beetje vergroting bij hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

.service-item img {
  width: 100%; /* Breedte passend maken */
  height: 300px; /* Standaard hoogte voor alle afbeeldingen */
  object-fit: cover; /* Zorgt ervoor dat de afbeelding correct wordt bijgesneden */
  border-bottom: 2px solid #f9b74f; /* Gele lijn onder afbeelding */
  border-radius: 10px 10px 0 0; /* Rondingen aan de bovenkant */
}


.service-item h2 {
  margin-top: 15px;
  font-size: 1.5rem;
  color: #f9b74f;
}

.service-item p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc; /* Lichtere tekstkleur */
}

/* Responsieve Aanpassingen */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column; /* Stapel de diensten onder elkaar op kleinere schermen */
    gap: 30px;
  }
}
/* Over Ons Sectie */
#overons {
  background-color: #f9b74f;
  padding: 50px 20px;
  text-align: center;
}

.about-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* Foto */
.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 500px; /* Zorgt voor consistente hoogte */
  flex: 1;
}

/* Tekst */
.about-text {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

.about-text h2 {
  color: #000;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  font-size: 1rem;
  color:#000
}

.service-item button {
  text-decoration: none;
  width: 100%;
  padding: 12px;
  border: none;
  background: #f9b74f;;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  width: 400px;
}