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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: white;
  padding: 20px 0;
  border-bottom: 2px solid #c9a227;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 70px;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline-block;
  margin-left: 25px;
}

nav ul li a {
  color: #222;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #c9a227;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  height: 380px;
  background: url("werkbus.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  color: white;
  z-index: 2;
  animation: fadeIn 1.5s ease forwards;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 15px;
}

.phone-hero {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

.btn {
  background: #c9a227;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #a6821f;
}

/* ===== USP BAR ===== */

.usp-bar {
  background: #111;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
}

.usp-bar span {
  margin: 0 20px;
}

/* ===== SECTIONS ===== */

.section {
  padding: 60px 0;
  text-align: center;
}

.section h2 {
  color: #c9a227;
  margin-bottom: 40px;
}

/* ===== GRID BLOKKEN ===== */

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: white;
  border: 1px solid #c9a227;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* ===== WHATSAPP BUTTON ===== */

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* ===== FOOTER ===== */

footer {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

/* ===== ANIMATION ===== */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE ===== */

@media(max-width: 768px){
  nav ul li {
    display: block;
    margin: 15px 0;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    height: 300px;
  }
}