/* Algemene stijl */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f9fb;
    color: #333;
}

/* Header met achtergrondfoto */
.hero {
    position: relative;
    background-image: url('../Image/Andries.jpg'); /* <-- juiste pad naar je foto */
    background-size: cover;
    background-position: center;
    color: white;
    height: 35px;
}

/* Donkere overlay over de foto voor leesbaarheid van tekst */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* transparante laag */
    z-index: 0;
}

/* Navigatiebalk */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0, 74, 143, 0.8);
    position: relative;
    z-index: 1;
}

.logo {
    height: 80px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.contact-btn, .menu-btn {
    background-color: white;
    color: #004a8f;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.menu-btn {
    background-color: #0070ba;
    color: white;
}

.menu-btn:hover,
.contact-btn:hover {
    opacity: 0.85;
}

/* Tekst over de foto */
.hero-content {
    position: absolute;
    bottom: 0;        /* helemaal onderaan de hero */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    padding-bottom: 15px; /* ruimte van onderkant hero/nav */
}


.hero-content h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-top: 10px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

/* Zoekbalk */
.search-section {
    display: flex;
    justify-content: center;
    margin-top: -25px;
    background-color: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Zoekbalk net onder hero */
.search-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -25px auto 30px auto; /* negatieve marge naar hero toe zodat het eroverheen zweeft */
    background-color: white;
    padding: 10px;
    border-radius: 12px;
    width: 60%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 2;
    position: relative;
}

.search-section input {
    padding: 10px;
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
}

.search-btn {
    background-color: #004a8f;
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 1rem;
}

.search-section input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 6px 0 0 6px;
}

.search-btn {
    background-color: #004a8f;
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

/* Tabbladen */
.tab-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 20px;
}

.tab {
    background-color: white;
    border: 2px solid #004a8f;
    border-radius: 16px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #004a8f;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tab:hover {
    background-color: #004a8f;
    color: white;
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    background-color: #004a8f;
    color: white;
    padding: 15px;
    margin-top: 60px;
}

/* Footer stijl */
.footer {
    background-color: #f3f4f6;
    color: #000;
    padding: 50px 8%;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Contactgedeelte */
.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-section.contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section.contact i {
    color: #004a8f;
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.footer-section.contact a {
    color: #004a8f;
    text-decoration: underline;
}

.footer-btn {
    background-color: #004a8f;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-btn:hover {
    background-color: #0066cc;
}

/* Openingstijden */
.footer-section.opening {
    flex: 1;
    min-width: 250px;
}

.footer-section.opening .card {
    background-color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.footer-section.opening h4 {
    margin-bottom: 8px;
}

.footer-section.opening p {
    margin: 4px 0;
    color: #333;
}

.footer-link {
    display: block;
    margin-top: 10px;
    text-decoration: underline;
    color: #004a8f;
}

/* Over Maasdriel.nl */
.footer-section.about ul {
    list-style: none;
    padding: 0;
}

.footer-section.about ul li {
    margin: 6px 0;
}

.footer-section.about a {
    color: #004a8f;
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.social-icons a {
    background-color: #004a8f;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background-color: #0066cc;
    
}

/* Responsief gedrag */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* --- Alleen voor Attracties pagina --- */
.attracties-page {
  margin: 0;
  padding: 0;
}

/* Hero sectie voor Attracties */
.hero-attracties {
  position: relative;
  height: 90vh;
  background: url("../Image/maasdriel_hero.jpg") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  margin: 0;
}

.hero-attracties .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-attracties .hero-content {
  z-index: 5;
  max-width: 800px;
  padding: 0 15px;
}

.hero-attracties h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-attracties p {
  font-size: 1.2rem;
}

/* Navigatiebalk */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  z-index: 10;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #ffd700;
}

.logo {
  height: 50px;
  border-radius: 6px;
}

/* Grid van bezienswaardigheden */
.places {
  padding: 80px 10%;
  background-color: #f8f8f8;
  text-align: center;
}

.places h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.place-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.place-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.place-card h3 {
  color: #004c93;
  margin: 15px 0 10px;
}

.place-card p {
  color: #555;
  font-size: 0.95rem;
  padding: 0 15px 20px;
}

/* Footer */
.footer {
  background-color: #004c93;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}

/* ===== Hero achtergrond per pagina ===== */

/* Attractiespagina */
#page-attracties .hero {
  background-image: url("../Image/maasdriel_hero.jpg");
  background-size: cover;
  background-position: center;
  height: 75vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#page-attracties .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
#page-attracties .hero-content {
  position: relative;
  z-index: 2;
}

/* Lunchpagina */
#page-lunch .hero {
  background-image: url("../Image/lunch_hero.jpg");
  background-size: cover;
  background-position: center;
  height: 75vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#page-lunch .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
#page-lunch .hero-content {
  position: relative;
  z-index: 2;
}

/* ==== Footer Stijl ==== */
.footer {
  background: #f7f7f7;
  padding: 50px 80px 30px;
  font-family: Arial, sans-serif;
  color: #000;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 280px;
}

/* Titelstijl */
.footer-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000;
}

/* Contactgegevens */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-info i {
  color: #00529b;
  margin-right: 10px;
}

.contact-info a {
  color: #00529b;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Afspraak knop */
.btn-afspraak {
  background: #00529b;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-afspraak i {
  margin-left: 6px;
}

.btn-afspraak:hover {
  background: #003f7d;
}

/* Openingstijden */
.footer-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.footer-box h3 {
  margin-bottom: 10px;
  color: #000;
}

/* Rechterkolom met links */
.footer-right h3 {
  margin-bottom: 10px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-right li {
  margin-bottom: 8px;
}

.footer-right a {
  text-decoration: none;
  color: #000;
}

.footer-right a:hover {
  color: #00529b;
}

/* Social media iconen */
.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: inline-block;
  background: #00529b;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  transition: background 0.3s ease;
}

.socials a:hover {
  background: #003f7d;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #333;
}

/* ==== Responsive Layout ==== */
@media (max-width: 1024px) {
  .footer {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-left, .footer-center, .footer-right {
    min-width: 100%;
  }

  .footer-box {
    margin-bottom: 15px;
  }

  .socials {
    justify-content: center;
  }

  .btn-afspraak {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-left h2 {
    font-size: 22px;
  }

  .contact-info li {
    font-size: 14px;
  }

  .footer-box h3 {
    font-size: 16px;
  }
}

.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-circle {
  width: 50px;
  height: 50px;
  background-color: #00539f; /* Blauwe kleur zoals Maasdriel */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-circle:hover {
  background-color: #003f7f;
  transform: scale(1.1);
}

.footer {
  background-color: #f7f7f7;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #000;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-section h2,
.footer-section h3 {
  color: #000;
  margin-bottom: 10px;
}

.footer-section p, .footer-section a {
  color: #000;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.button {
  background-color: #005a9c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.button:hover {
  background-color: #00487a;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  background-color: #005a9c;
  color: #fff; /* 👈 iconen wit gemaakt */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #00487a;
}

.footer-bottom {
  text-align: center; /* 👈 tekst onderaan gecentreerd */
  margin-top: 40px;
  font-size: 14px;
  color: #333;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 10; /* Zodat ze boven andere elementen staan */
}

.social-icons a {
  background-color: #005ca9;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.social-icons a:hover {
  background-color: #003f73;
  transform: scale(1.05);
}

/* Footer onderaan mooi gecentreerd */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 15px 0;
  font-size: 0.9rem;
  color: #333;
}

/* Links klikbaar zonder standaard blauw */
.footer-section a {
  color: inherit;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* Witte knop voor 'Afspraak maken' */
.white-button {
  display: inline-block;
  background-color: #005ca9;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.white-button:hover {
  background-color: #003d73;
}

/* Social icons wit houden */
.social-icons a i {
  color: white;
}

/* Witte knop voor 'Afspraak maken' */
.white-button {
  display: inline-block;
  background-color: #005ca9; /* Gemeente blauw */
  color: #fff !important; /* Tekst wit */
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.white-button:hover {
  background-color: #003d73;
  transform: scale(1.05);
}

/* Voorkom horizontaal scrollen */
html, body {
  overflow-x: hidden;
}

/* Introductietekst */
.intro {
  max-width: 1000px;     /* maakt de tekst niet te breed */
  margin: 0 auto;        /* centreert het blok horizontaal */
  padding: 0 40px;       /* ruimte links en rechts */
  line-height: 1.6;      /* prettige regelafstand */
}

/* Navigatiebalk */
.navbar {
  display: flex;
  justify-content: space-between; /* logo links, menu rechts */
  align-items: center;
  padding: 0 60px; /* ruimte links en rechts */
  background-color: #2f6fa3; /* zelfde kleur als je huidige */
  height: 80px; /* vaste hoogte voor nette uitlijning */
  box-sizing: border-box;
}

.navbar img.logo {
  height: 50px; /* eventueel aanpassen */
  width: auto;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-left: 25px; /* ruimte tussen menu-items */
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ffcc00; /* geel accent bij hover */
}

/* Zorg dat de actieve pagina opvalt */
.navbar a.active {
  color: #ffcc00;
}

/* Navigatiebalk */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  background-color: #2f6fa3;
  height: 80px;
  box-sizing: border-box;
}

.navbar img.logo {
  height: 50px;
  width: auto;
}

/* Menu container */
.navbar nav {
  display: flex;
  gap: 25px; /* afstand tussen links — pas aan naar smaak (bijv. 30px) */
  align-items: center;
}

/* Links in navigatie */
.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px; /* optioneel voor nettere typografie */
}

/* Hover en actieve link */
.navbar a:hover {
  color: #ffcc00;
}

.navbar a.active {
  color: #ffcc00;
}

/* ===== Navigatiebalk ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2f6fa3; /* Blauw */
  padding: 0 60px;
  height: 80px;
  box-sizing: border-box;
  overflow: hidden;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 55px;
  width: auto;
  display: block;
}

.navbar nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px; /* Ruimte tussen links */
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 8px 5px;
  letter-spacing: 0.5px;
}

.navbar a:hover {
  color: #ffcc00; /* Geel bij hover */
}

.navbar a.active {
  color: #ffcc00;
}

/* Responsive versie (voor mobiel/tablet) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 10px 20px;
    height: auto;
  }

  .navbar nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .logo {
    height: 45px;
    margin-bottom: 10px;
  }
}

/* ===== DUKDALF SECTIE ===== */
.dukdalf-section {
  background-image: url("Image/haven_kerkdriel.jpg"); /* <-- vervang dit met je echte bestandsnaam */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dukdalf-section .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* donkere laag voor leesbaarheid */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dukdalf-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 60px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  text-align: center;
  animation: fadeInUp 1.5s ease;
}

.dukdalf-content h1 {
  font-size: 2.8rem;
  color: #003366;
  font-weight: 600;
  margin-bottom: 20px;
}

.dukdalf-content p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400; /* niet dikgedrukt */
}

/* Eenvoudige fade-in animatie */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== DUKDALF SECTIE ===== */
.dukdalf-section {
  position: relative;
  height: 85vh;
  background-image: url("../Image/Dukdalf.jpg"); /* <-- pas dit aan naar je echte foto */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

/* Zachte zomerse gloed */
.dukdalf-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 180, 90, 0.25),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}

.dukdalf-section .overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 15px;
  padding: 40px 20px;
  max-width: 700px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.dukdalf-content h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fffbea;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.dukdalf-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
  color: #fdfdfd;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Verborgen toestand vóór animatie */
.hidden {
  opacity: 0;
  transform: translateY(50px);
}

/* Actieve animatie bij scrollen */
.visible {
  opacity: 1;
  transform: translateY(0);
}

.dukdalf-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-top: 25px;
  font-size: 1.1rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dukdalf-button:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #002850;
  border-color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.dukdalf-content {
  background: rgba(0, 0, 0, 0.35); /* donkerdere laag achter tekst */
  color: #ffffff; /* witte tekst */
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  max-width: 850px;
  margin: auto;
  font-size: 1.2rem;
  line-height: 1.6;
}

.dukdalf-content h1 {
  font-size: 3rem;
  color: #ffffff; /* witte titel */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 25px;
}

.dukdalf-content p {
  color: #f1f1f1; /* iets zachter wit voor balans */
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.dukdalf-button {
  display: inline-block;
  background: #0078d7; /* helder blauw */
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dukdalf-button:hover {
  background: #005fa3;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.dukdalf-content {
  background: none; /* Geen achtergrond meer */
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 0;
  text-align: center;
  backdrop-filter: none; /* Verwijdert blur */
  box-shadow: none;
  max-width: 850px;
  margin: auto;
  font-size: 1.2rem;
  line-height: 1.6;
}

.dukdalf-content h1 {
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 25px;
}

.dukdalf-content p {
  color: #f1f1f1;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.dukdalf-button {
  display: inline-block;
  background: #0078d7;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dukdalf-button:hover {
  background: #005fa3;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ====== Attracties pagina (strakke versie) ====== */

.attractions-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url('../Image/achtergrond_maasdriel.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

#translate-btn {
  margin-top: 30px;
  padding: 10px 25px;
  background-color: #0072bc;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#translate-btn:hover {
  background-color: #005a91;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #004a80;
  margin-top: 60px;
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.attraction-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.attraction-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.attraction-card h3 {
  color: #004a80;
  margin-top: 15px;
  font-size: 1.3rem;
}

.attraction-card p {
  padding: 0 15px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

footer {
  text-align: center;
  padding: 25px;
  background-color: #f8f8f8;
  color: #555;
  font-size: 0.9rem;
}


/* ========== ATTRACTIES PAGINA ========== */

/* Hero Sectie */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url("../images/maasdriel-hero.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 8rem 2rem;
  font-family: "Poppins", sans-serif;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero p {
  max-width: 700px;
  margin: 1rem auto 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Vertaal-knop */
#translateBtn {
  background-color: #005fa3;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8
}

/* ===================== FUTURISTIC LOOK ===================== */

/* Navigatie */
.navbar {
  background: #2367a0;
  padding: 1rem 2rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: #ffcc00;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(0, 60, 130, 0.85), rgba(0, 150, 255, 0.6)),
              url("../images/maasdriel-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backdrop-filter: blur(3px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
  max-width: 650px;
  margin: 1rem auto 2rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

#translateBtn {
  background: #00aaff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.6);
}

#translateBtn:hover {
  background: #0077cc;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.9);
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  color: #004b80;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

.card p {
  color: #555;
  font-size: 0.95rem;
  padding: 0 1.2rem 1.5rem;
}

/* Footer */
.footer {
  background: #f3f7fa;
  color: #666;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
}

/* Animaties */
.hero-content h1, .hero-content p, #translateBtn {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ===== Hero Afbeelding ===== */
.hero {
  background-image: url(".Image/Luchtbeeld.jpg"); /* Controleer of dit pad klopt */
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 0; /* zorgt dat het strak aansluit onder de navbar */
}

/* Donkere overlay voor leesbaarheid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
}

.hero-content h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  color: #f1f1f1;
}

/* ===== Zoekbalk styling ===== */
.search-section {
  text-align: center;
  padding: 30px 0;
  background-color: #f5f5f5;
}

.search-section input {
  padding: 10px 15px;
  width: 250px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.search-btn {
  margin-left: 10px;
  padding: 10px 20px;
  background-color: #1e73be;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn:hover {
  background-color: #155c94;
}

/* Hero Sectie */
.hero {
  background-image: url("Image/Andries.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh; /* iets kleiner gemaakt */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero {
  background-image: url("../Image/Andries.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh; /* Maak de afbeelding wat kleiner (van bijv. 100vh naar 60vh) */
  display: flex;
  justify-content: center; /* Horizontaal centreren */
  align-items: center;     /* Verticaal centreren */
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.4); /* subtiele donkere overlay achter de tekst */
  padding: 30px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.2em;
}

/* Donkere overlay over de afbeelding */

/* ===== Alleen voor de Homepagina Hero ===== */
.hero {
  background-image: url("../Image/Andries.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  animation: fadeInHero 1.5s ease-in-out;
}

/* Donkere overlay voor leesbaarheid */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Hero-tekst */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInText 2s ease-in-out;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* ===== Animaties ===== */
@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Alleen voor de homepagina */
body.home .hero {
    background-image: url("../Image/Andries.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh; /* iets kleiner */
    display: flex;
    justify-content: center; /* horizontaal centreren */
    align-items: center; /* verticaal centreren */
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

body.home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* minder donkere overlay */
    backdrop-filter: blur(2px); /* lichte blur i.p.v. zware */
    z-index: 0;
}

body.home .hero h1,
body.home .hero p {
    position: relative;
    z-index: 1;
}

/* Alleen voor de homepagina */
body.home .hero {
    background-image: url("../Image/Andries.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh; /* Kleiner vlak, was 60vh */
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
    border-radius: 15px; /* optioneel, geeft zachte randen */
}

/* Donkere laag voor leesbaarheid */
body.home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* subtiel donkerder */
    z-index: 0;
}

/* Tekst */
body.home .hero h1,
body.home .hero p {
    position: relative;
    z-index: 1;
    margin: 0;
}

body.home .hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

body.home .hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Alleen voor de homepagina */
body.home .hero {
    background-image: url("../Image/Andries.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh; /* Kleiner fotoblok */
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

/* Verwijder eventueel blur (als het eerder was toegevoegd) */
body.home .hero img,
body.home .hero {
    filter: none !important;
}

/* Donkere overlay voor leesbaarheid */
body.home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Tekst netjes in het midden */
body.home .hero h1,
body.home .hero p {
    position: relative;
    z-index: 1;
    margin: 0;
}

body.home .hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
}

body.home .hero p {
    font-size: 1.1rem;
    margin-top: 8px;
}


/* Alleen voor de homepagina */
body.home .hero {
    background-image: url("../Image/Andries.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh; /* Kleiner fotoblok */
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

/* Verwijder eventueel blur (als het eerder was toegevoegd) */
body.home .hero img,
body.home .hero {
    filter: none !important;
}

/* Donkere overlay voor leesbaarheid */
body.home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Tekst netjes in het midden */
body.home .hero h1,
body.home .hero p {
    position: relative;
    z-index: 1;
    margin: 0;
}

body.home .hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
}

body.home .hero p {
    font-size: 1.1rem;
    margin-top: 8px;
}

/* Alleen voor de homepagina */
body.home .hero {
    background-image: url("../Image/Andries.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh; /* Kleiner fotoblok */
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

/* Verwijder eventueel blur (als het eerder was toegevoegd) */
body.home .hero img,
body.home .hero {
    filter: none !important;
}

/* Donkere overlay voor leesbaarheid */
body.home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Tekst netjes in het midden */
body.home .hero h1,
body.home .hero p {
    position: relative;
    z-index: 1;
    margin: 0;
}

body.home .hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
}

body.home .hero p {
    font-size: 1.1rem;
    margin-top: 8px;
}
/* Alleen voor de homepagina */
body.home .hero {
    background-image: url("../Image/Andries.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh; /* Kleiner fotoblok */
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

/* Verwijder eventueel blur (als het eerder was toegevoegd) */
body.home .hero img,
body.home .hero {
    filter: none !important;
}

/* Donkere overlay voor leesbaarheid */
body.home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Tekst netjes in het midden */
body.home .hero h1,
body.home .hero p {
    position: relative;
    z-index: 1;
    margin: 0;
}

body.home .hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
}

body.home .hero p {
    font-size: 1.1rem;
    margin-top: 8px;
}


/* Alleen voor de homepagina */
body.home .hero {
    background-image: url("../Image/Andries.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh; /* Kleiner fotoblok */
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

/* Verwijder eventueel blur (als het eerder was toegevoegd) */
body.home .hero img,
body.home .hero {
    filter: none !important;
}

/* Donkere overlay voor leesbaarheid */
body.home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Tekst netjes in het midden */
body.home .hero h1,
body.home .hero p {
    position: relative;
    z-index: 1;
    margin: 0;
}

body.home .hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
}

body.home .hero p {
    font-size: 1.1rem;
    margin-top: 8px;
}

/* Alleen voor de homepagina */
body.home .hero {
    background-image: url("../Image/Andries.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh; /* Kleiner fotoblok */
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

/* Verwijder eventueel blur (als het eerder was toegevoegd) */
body.home .hero img,
body.home .hero {
    filter: none !important;
}

/* Donkere overlay voor leesbaarheid */
body.home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Tekst netjes in het midden */
body.home .hero h1,
body.home .hero p {
    position: relative;
    z-index: 1;
    margin: 0;
}

body.home .hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
}

body.home .hero p {
    font-size: 1.1rem;
    margin-top: 8px;
}

.hero {
  background-image: url("../Image/Andries.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 45vh; /* kleiner vlak */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
  overflow: hidden;
  filter: none; /* geen blur */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* lichte overlay voor contrast */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
}

.hero {
  background-image: url("../Image/Andries.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 45vh; /* kleiner vlak */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
  overflow: hidden;
  filter: none; /* geen blur */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* lichte overlay voor contrast */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
}

