/* Algemene Stijlen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #FFF;
  background-color:#F5F5F5;
}


h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

a {
    text-decoration: none; /* Verwijdert de onderlijn van de link */
    color: inherit;       /* Zorgt ervoor dat de kleur van de link dezelfde is als de omringende tekst */
}



.container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            width: 90%;
            max-width: 1000px;
            margin: 20px auto;
        }
        .section {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: calc(20% - 20px); /* Past 5 items naast elkaar */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
		
        }
        /* Hover-animatie op de gehele sectie */
        .section:hover {
            transform: translateY(-10px);
        }
        /* Afbeeldingen met vaste afmetingen en lichte zoom-animatie */
        .section img {
            width: 100%;
            height: 150px;
            max-width: 150px;
            border-radius: 8px;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }
        /* Subtiele zoom-in zonder vervorming */
        .section:hover img {
            transform: scale(1.05);
        }
        .section h2 {
            margin: 10px 0 5px;
            color: #333;
            font-size: 1.2em;
        }
        .section p {
            margin: 0;
            color: #666;
            font-size: 0.9em;
        }
        /* Responsief ontwerp */
        @media (max-width: 768px) {
            .section {
                width: calc(50% - 20px); /* 2 items naast elkaar */
            }
        }
        @media (max-width: 480px) {
            .section {
                width: 100%; /* 1 item per rij */
            }
        }

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #D2232A;
  position: relative;
  z-index: 1000;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.contact {
	text-align: right;
	
}

.nav {
  flex: 1;
  text-align: center;
}

.nav ul {
  display: flex;
  list-style: none;
 
  justify-content: center;
  
}

.nav ul li {
  margin-left: 1.5rem;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
}

.contact-button {
  background-color: #800000;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.contact-button ul {
	color: red;
}



/* Hamburger Menu Styling */
/* Hamburger Menu Styling */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  margin-top: -3px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  transition: transform 0.4s ease, opacity 0.4s ease; /* Voeg transitie toe */
}

/* Transformeer naar een kruis (X) wanneer actief */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0; /* Verdwijnt middenste streep */
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Maak de hamburger zichtbaar op mobiele schermen */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    right: 32px;
    top: 16px;
  }
}


@media (max-width: 768px) {
  @media (max-width: 768px) {
  /* Verberg de horizontale navigatie en pas de stijl van het dropdown-menu aan */
  .nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: rgba(34, 34, 34, 0.9); /* Doorzichtiger achtergrondkleur */
    width: 100%;
    padding: 1rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s ease, opacity 0.4s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }

  .nav ul.active {
    display: flex;
    max-height: 400px; /* Pas aan als er meer items zijn */
    opacity: 0.95; /* Iets doorzichtiger bij openen */
  }
}

  .nav ul li {
    margin: 0.5rem 0;
    text-align: center;
  }

  .nav ul li a {
    color: #fff;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
  }

  .hamburger {
    display: flex;
	z-index: 9999;
  }
}

/* Enhanced Hero Section Styling */
.hero {
  text-align: center;
  padding-top: 165px; /* Increased padding for a larger hero area */
  color: #FFF; /* Change text color for better contrast */
  background-image: url('Images/v.jpg'); /* Replace with your image */
  background-size: cover; /* Cover the entire section */
  background-position: center; /* Center the background image */
  position: relative; /* Needed for positioning pseudo-elements */
  min-height: 400px; /* Minimum height for a more significant visual impact */
  overflow: hidden; /* Ensures no overflow of elements */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
  z-index: 1; /* Position below text */
}

.hero h1 {
  color: #D2232A; /* Header color */
  font-size: 3rem; /* Larger font size for more impact */
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Stronger shadow for depth */
  z-index: 2; /* Above the overlay */
  position: relative; /* Relative positioning for z-index */
}

.hero p {
  font-size: 1.2rem; /* Larger paragraph text for readability */
  margin-bottom: 2rem;
  z-index: 2; /* Above the overlay */
  position: relative; /* Relative positioning for z-index */
}

.cta-button {
  background-color: #D2232A; /* Button color */
  color: white; /* Text color */
  padding: 15px 30px; /* Button padding */
  margin: 10px;
  font-size: 1.1rem; /* Button font size */
  cursor: pointer;
  border: none; /* Remove border */
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
  z-index: 2; /* Above the overlay */
  position: relative; /* Relative positioning for z-index */
}

.cta-button:hover {
  background-color: #800000; /* Darker shade on hover */
  transform: translateY(-3px); /* Lift effect on hover */
}

.cta-button:focus {
  outline: none; /* Remove focus outline */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    background-image: url('Images/y.jpg'); /* Hide background image in mobile view */
/* Remove padding for mobile */
    min-height: 75vh; /* Full viewport height for mobile */
   
  }

  .hero h1 {
    font-size: 2.5rem; /* Adjust font size on smaller screens */
  }

  .hero p {
    font-size: 1rem; /* Adjust paragraph size */
  }

  .cta-button {
    font-size: 1rem; /* Adjust button size */
  }
}



.core-concepts {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background-color: #000;
}

.concept {
  width: 30%;
  text-align: center;
  padding: 1rem;
  background-color: #222;
  border-radius: 10px;
}

.highlighted {
  background-color: #00FFFF;
}

.services {
  text-align: center;
  padding: 2rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  padding: 1rem;
  background-color: #222;
  border-radius: 10px;
  text-align: center;
}

.card.highlighted {
  background-color: #00FFFF;
}

/* Responsieve Stijlen */
@media (max-width: 768px) {
  .core-concepts {
    flex-direction: column;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }
}

/* Intro Section Styling */
.intro {
  padding: 2rem;
  background-color: #fff; /* Change to match your desired background */
  color: #222; /* Change to a contrasting color */
  text-align: center;
  border-radius: 10px;
  margin: 2rem 1rem; /* Add some margin to separate it from other sections */
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}


