/* ===== ALGEMEEN ===== */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fffdf5;
  color: #3b2b00;
  line-height: 1.7;
}

.container {
  width: 95%;
  max-width: 1500px;
  margin: auto;
}

/* =====================================
   BEGINNENDE IMKER PAGINA
===================================== */

.imker-hero {
  background-image: url("images/imker-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* actieve menu knop */

.main-nav a.active {
  background-color: #fff7c8;
}

/* extra ruimte */

.tip-box p,
.card p {
  color: #5c4300;
}

/* afbeeldingen mooier */

.info-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* mobiel */

@media (max-width: 768px) {

  .info-image img {
    min-height: auto;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================
   EDUCATIE PAGINA
===================================== */

.educatie-hero {
  background-image: url("images/educatie-bijen-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* extra leesruimte */

.content-section p {
  margin-bottom: 18px;
}

/* mooiere kaarten */

.card p {
  color: #5c4300;
}

/* info afbeeldingen */

.info-image img {
  min-height: 320px;
  object-fit: cover;
}

/* mobiel */

@media (max-width: 768px) {

  .info-image img {
    min-height: auto;
  }

  .card {
    padding: 24px;
  }
}


/* ===== HEADER ===== */

.site-header {
  background: linear-gradient(
    to right,
    #c98a00,
    #e5aa00,
    #ffd34d,
    #fff0a0
  );

  padding: 20px 0;
  border-bottom: 4px solid #9e6a00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-area {
  text-align: center;
  margin-bottom: 20px;
}

.logo-area h1 {
  font-size: 3rem;
  color: #5c3b00;
}

.logo-area p {
  color: #6e5200;
  font-style: italic;
  margin-top: 5px;
}

/* ===== MENU ===== */

.imker-btn {
  position: absolute;
  top: 50px;
  left: 0;

  background: #f4b400;
  color: white;

  padding: 15px 25px;
  text-decoration: none;

  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;

}

/* ===== MOBIEL FIX IMKER BUTTON ===== */

@media (max-width: 768px) {

  .imker-btn,
  .educatie-btn {

    position: relative;

    top: auto;
    left: auto;
    right: auto;

    display: inline-block;

    margin: 10px auto;

    border-radius: 30px;

  }

  .logo-area {
    padding-top: 10px;
  }

}


.educatie-btn {
  position: absolute;
  top: 0;
  left: 0;

  background: #f4b400;
  color: white;

  padding: 15px 25px;
  text-decoration: none;

  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.main-nav a {
  text-decoration: none;
  color: #4a3200;
  background-color: rgba(255,255,255,0.35);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.main-nav a:hover {
  background-color: #fff7c8;
  transform: translateY(-2px);
}

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

.hero {
  background-image: url("images/bianca-ackermann-.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
}

.hero-overlay {
  #background-color: rgba(0,0,0,0.45);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  text-align: center;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  background-color: #f5c400;
  color: #3b2b00;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.hero-button:hover {
  background-color: #ffe169;
}

/* ===== CONTENT ===== */

.content-section {
  padding: 60px 0 30px;
}

.content-section h2 {
  margin-bottom: 20px;
  color: #7a4e00;
  font-size: 2rem;
}

/* ===== CARDS ===== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.card {
  background-color: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

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

.card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 15px;
  color: #8a5a00;
}

/* ===== INFO BLOK ===== */

.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 70px 0;
}

.info-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


.info2-image img {
  width: 65%;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.info-text h2 {
  color: #7a4e00;
  margin-bottom: 20px;
}

.info-text ul {
  margin-top: 20px;
  padding-left: 20px;
}

.info-text li {
  margin-bottom: 12px;
}

/* ===== TIPS ===== */

.tips-section {
  margin: 60px 0;
}

.tips-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #7a4e00;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.tip-box {
  background: #fff6d6;
  padding: 30px;
  border-left: 6px solid #d99b00;
  border-radius: 14px;
}

.tip-box h3 {
  margin-bottom: 15px;
  color: #7a4e00;
}

/* ===== SLOT ===== */

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

.closing-section h2 {
  margin-bottom: 20px;
  color: #7a4e00;
}

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

.site-footer {
  background-color: #8a5a00;
  color: #fff6d5;
  text-align: center;
  padding: 25px;
  border-top: 4px solid #e0a800;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.footer-links-inline a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links-inline a:hover {
  text-decoration: underline;
  color: #ffe28a;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {

  .info-block {
    grid-template-columns: 1fr;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .logo-area h1 {
    font-size: 2.2rem;
  }

  .hero {
    height: 400px;
  }

  .hero-content p {
    font-size: 1rem;
  }
/* EXTRA CSS toevoegen aan style.css */

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

.page-hero {
  background-image: url("images/bijen-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 420px;
  position: relative;
}

.page-hero-overlay {
  background-color: rgba(0,0,0,0.45);
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
}

.page-hero-content {
  text-align: center;
  color: white;
}

.page-hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: auto;
}

/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 768px) {

  .page-hero {
    height: 320px;
  }

  .page-hero-content h2 {
    font-size: 2rem;
  }

  .page-hero-content p {
    font-size: 1rem;
  }
/* EXTRA CSS toevoegen aan style.css */

/* =====================================
   PAGINA WAAROM BIJEN BELANGRIJK
===================================== */

.belangrijk-hero {
  background-image: url("images/bijen-natuur.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.stedelijk-hero {
  background-image: url("images/stedelijke-bijen-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* EXTRA CSS toevoegen aan style.css */

/* =====================================
   BIJENZWERM PAGINA
===================================== */

.zwerm-hero {
  background-image: url("images/bijenzwerm-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =====================================
   CONTACT PAGINA NIEUW
===================================== */

.new-contact-section {
  padding: 70px 0;
}

/* wrapper */
.new-contact-wrapper {

  display: grid;
  grid-template-columns: 1fr 1.2fr;

  gap: 40px;

  align-items: start;
}

/* linkerkant */
.contact-info {

  background:
    linear-gradient(135deg, #d99b00, #f0b400);

  color: white;

  padding: 40px;

  border-radius: 24px;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.12);
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-info p {
  line-height: 1.8;
}

.contact-details {
  margin-top: 30px;
}

.contact-details p {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* formulier */
.contact-form-box {

  background: #fffdf7;

  padding: 40px;

  border-radius: 24px;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.08);
}

/* velden */
.form-field {
  margin-bottom: 22px;
}

.form-field label {

  display: block;

  margin-bottom: 8px;

  font-weight: bold;

  color: #7a4e00;
}

/* inputs */
.form-field input,
.form-field textarea {

  width: 100%;

  padding: 14px;

  border-radius: 12px;

  border: 1px solid #ddd;

  font-size: 1rem;

  transition: 0.3s;
}

/* focus */
.form-field input:focus,
.form-field textarea:focus {

  outline: none;

  border-color: #d99b00;

  box-shadow:
    0 0 0 4px rgba(217,155,0,0.15);
}

/* knop */
.contact-form-box button {

  width: 100%;

  background:
    linear-gradient(135deg, #d99b00, #f0b400);

  color: white;

  border: none;

  padding: 16px;

  border-radius: 14px;

  font-size: 1rem;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

.contact-form-box button:hover {

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.12);
}

/* spam beveiliging */
.honeypot {
  display: none;
}

/* mobiel */
@media (max-width: 900px) {

  .new-contact-wrapper {
    grid-template-columns: 1fr;
  }

.hidden-field {
  position: absolute;
  left: -9999px;

}