/* Algemene Stijlen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #111;
}

/* Navigatiebalk */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-gif {
  height: 2em;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #cc0000; /* Dieprood als Japanse accentkleur */
}

.login-btn {
  text-decoration: none;
  background-color: #111;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
}

.login-btn:hover {
  background-color: #cc0000;
}

/* Knoppen */
.btn {
  display: inline-block;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s;
  margin: 10px;
}

.btn-primary {
  background-color: #cc0000;
  color: #fff;
}

.btn-primary:hover {
  background-color: #aa0000;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #111;
  transform: translateY(-2px);
}

.btn-secondary-white {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary-white:hover {
  background-color: #fff;
  color: #111;
}

/* Sectie 1: Hero met P1-Background */
.hero-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("P1-Background.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content max-width {
  max-width: 800px;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Sectie 2: Introductie */
.intro-section {
  background-color: #fff;
  text-align: center;
}

.intro-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #555;
}

/* Sectie 3: Stappenplan */
.steps-section {
  background-color: #f3f3f3;
}

.steps-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.step-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 6px;
  text-align: center;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.step-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.step-card p {
  color: #666;
}

.center-btn {
  text-align: center;
}

/* Sectie 4: Agenda met P3-Background */
.agenda-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("P3-Background.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.agenda-section h2 {
  color: #fff;
}

.agenda-section .subtitle {
  margin-bottom: 40px;
  font-size: 1.1rem;
  opacity: 0.8;
}

.agenda-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.agenda-card {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(251, 178, 178, 0.2);
  padding: 30px;
  border-radius: 6px;
  flex: 1;
  text-align: left;
  color: #fff;
}

.date-badge {
  background-color: #cc0000;
  color: #fff;
  display: inline-block;
  padding: 4px 10px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.agenda-card h3 {
  margin-bottom: 10px;
}

.agenda-card p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.card-link {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #111;
  color: #777;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

/* Mobiel Vriendelijk maken (Responsive) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    margin-bottom: 10px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .steps-grid,
  .agenda-grid {
    flex-direction: column;
  }
}
