/* Algemeen reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header */
header {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  margin-right: 15px;
}

.logo h1 {
  font-size: 24px;
  color: #357df9;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  padding: 5px 0;
  transition: color 0.3s;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a.active {
  color: #357df9;
  border-bottom: 2px solid #357df9;
}

/* Hero sectie */
.hero {
  position: relative;
  background-image: url('ggg.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 25px;
}

.hero-content .button {
  display: inline-block;
  background-color: #357df9;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.hero-content .button:hover {
  background-color: #245bc5;
}

/* Recept sectie */
.recept-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.recept-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.recept-text {
  flex: 1 1 400px;
}

.recept-text h2 {
  font-size: 2rem;
  color: #357df9;
  margin-bottom: 20px;
}

.recept-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.recept-image {
  flex: 1 1 400px;
  text-align: center;
}

.recept-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 25px 0;
  background-color: white;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 14px;
}
