/* ===== Algemene stijl ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #ffffff;
  color: #111827;
  overflow-x: hidden;
}

/* ===== Navigatiebalk ===== */
.navbar {
  width: 100%;
  background: linear-gradient(to right, #b70000, #e6a6a6); /* donker → iets lichter */
  color: white;
  padding: 0.8rem 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo + tekst naast elkaar */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  gap: 0.8rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Navigatie links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: #60a5fa;
  border-bottom: 2px solid #60a5fa;
}

/* Actieve pagina */
.nav-links a.active {
  color: #60a5fa;
  border-bottom: 2px solid #60a5fa;
}

/* ===== Dropdown-menu ===== */
.nav-links,
.dropdown-menu { /* opsomming tekens fix */
  list-style: none;
  margin: 0;
  padding: 0;
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(to right, #b70000, #e6a6a6); /* donker → iets lichter */
  display: none;
  flex-direction: column;
  min-width: 180px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.35);
  border-radius: 0 0 6px 6px;
  padding: 0.4rem 0;
  white-space: nowrap;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: white;
  transition: background 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Mobiel menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Header home page */
.hero-overige {
  position: relative;
  width: 100%;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-text {
  color: white;
  text-align: center;
  z-index: 2;
  padding: 1rem 2rem;
  max-width: 900px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2rem;
  color: #e5e7eb;
}

/* ===== Info Sectie ===== */
.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 8%;
  background-color: #f9fafb;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.info-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-text {
  flex: 1;
  min-width: 280px;
}

.info-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111827;
  font-weight: 700;
}

.info-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
}

.info-image {
  flex: 0 0 auto;
  max-width: 500px;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.main-button {
  display: inline-block;
  background-color: #6558d3;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  padding: 0.75em 1.5em;
  text-decoration: none;
  box-shadow: 0 10px 20px -5px rgba(0, 38, 255, 0.2);
  transition: all 0.3s ease;
}

.main-button:hover {
  background-color: #4133B7;
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -5px rgba(0, 38, 255, 0.3);
}

/* ===== Fade-in Effect ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111827;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo-text {
    font-size: 1rem;
  }

  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-image {
    max-width: 80%;
    margin-top: 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  background: linear-gradient(to right, #b70000, #e6a6a6); /* donker → iets lichter */
  color: #d1d5db;
  padding: 2.5rem 8%;
  border-top: 3px solid #1f2937;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

/* Kolom 1 */
.footer-logo {
  height: 110px;
  width: auto;
  display: block;
  margin: 0 auto 0.5rem auto;
}

.footer-copy {
  font-size: 0.95rem;
  color: #9ca3af;
}

/* Kolom 2 */
.footer-col h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-col p {
  margin: 0.3rem 0;
  color: #fff;
  font-size: 0.95rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Kolom 3 */
.footer-link {
  color: #fff; /* zelfde kleur als normale footertekst */
  text-decoration: none;
  font-weight: normal;
  transition: font-weight 0.3s ease;
}

.footer-link:hover {
  font-weight: 600; /* vet bij hover */
  color: #9ca3af;   /* kleur blijft hetzelfde */
}


/* Responsief design */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 0.7rem;
  }
}
/* End footer */


/* ===== Algemene container ===== */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

/* ===== Diensten Intro ===== */
.services-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.services-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.services-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #697e91;
}
/* End diensten */

/* ===== Elke box ===== */
/* ===== Container ===== */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

/* ===== Elke box ===== */
.plan {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #fff;
  color: #697e91;
  border-radius: 16px;
  box-shadow: 0 30px 30px -25px rgba(0, 38, 255, 0.205);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 40px -25px rgba(0, 38, 255, 0.3);
}

/* ===== Binnenstructuur ===== */
.plan .inner {
  background-color: #ecf0ff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ===== Tekst ===== */
.plan .title {
  font-weight: 600;
  font-size: 1.25rem;
  color: #425675;
  margin-bottom: 0.75rem;
}

.plan .info {
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ===== Features-lijst (verticaal, uitgelijnd) ===== */
.plan .features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column; /* blijft onder elkaar */
  gap: 0.6rem;
  margin-top: auto; /* duwt features naar beneden zodat ze uitgelijnd zijn tussen boxes */
}

.plan .features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan .features .icon {
  background-color: #1FCAC5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== Knop onderaan ===== */
.plan .action {
  margin-top: 0.5rem; /* kleine ruimte boven knop */
}

.plan .button {
  background-color: #6558d3;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  border: none;
  width: 100%;
  padding: 0.625em 0.75em;
  text-decoration: none;
  cursor: pointer;
  display: block;
}

.plan .button:hover,
.plan .button:focus {
  background-color: #4133B7;
}


/* End box diensten */


/* ------------------------------- Over Ons pagina ------------------------------- */
/* over ons */
.about-section {
  padding: 60px 10%;
}

.about-container {
  display: flex;
  align-items: center; /* afbeelding verticaal in het midden van de tekst */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 320px;
  color: #222;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1c1c1c;
  font-weight: 700;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center; /* zorgt ervoor dat afbeelding in het midden staat */
}

.about-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}
/* End over ons */

/* ------------------------------- Beveiliging, Evenementen & Centralist pagina ------------------------------- */
.service-section {
  padding: 60px 10%;
  background-color: #f7f8fa;
}

.service-container {
  display: flex;
  align-items: center;  /* afbeelding verticaal in het midden */
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;      /* voor mobiel: afbeelding onder tekst */
}

.service-text {
  flex: 1;
  min-width: 320px;
  color: #222;
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1c1c1c;
  font-weight: 700;
}

.service-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center; /* verticaal centreren */
}

.service-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* ------------------------------- Contact pagina ------------------------------- */
/* ------------------ Contactpagina ------------------ */
.contact-section {
  padding: 60px 10%;
  background-color: #f9fafb;
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 320px;
}

.contact-left h2,
.contact-right h2 {
  font-size: 2rem;
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 25px;
}

/* ===== Modern formulier ===== */
.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #6b7280;
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Label animatie bij focus of tekst */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 12px;
  font-size: 0.8rem;
  color: #6558d3;
  background: #f9fafb;
  padding: 0 5px;
}

/* Focus effecten */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #6558d3;
  box-shadow: 0 0 8px rgba(101, 88, 211, 0.3);
  outline: none;
}

/* Verstuurknop */
.submit-btn {
  background-color: #6558d3;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: #4133B7;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(101, 88, 211, 0.3);
}

/* ===== Kaartsectie ===== */
/* ===== Contact sectie ===== */
.contact-section {
  padding: 60px 20px;
  background-color: #f6f8ff;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 30px 30px -25px rgba(0, 38, 255, 0.1);
}

/* Flex container voor formulier + kaart */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* zorgt dat beide kolommen even hoog zijn */
  gap: 40px;
  flex-wrap: wrap; /* mobiel onder elkaar */
}

/* Contactformulier links */
.contact-left {
  flex: 1 1 45%;
}

/* Kaart rechts */
.map-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

/* Kaart container vult hoogte van de linkerkolom */
.map-container {
  flex: 1; /* neemt volledige beschikbare hoogte */
  border-radius: 30px; /* afgeronde hoeken */
  overflow: hidden;
  box-shadow: 0 20px 30px -15px rgba(0, 38, 255, 0.15);
  min-height: 300px; /* fallback voor kleine schermen */
}

/* Kaart iframe volledig vullen */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== Responsief gedrag ===== */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left,
  .map-content {
    flex: 1 1 100%;
  }

  .map-container {
    height: 300px;
  }
}


/* ------------------------------- Contact pagina TIJDELIJK ------------------------------- */
/* ===== Contactpagina (stijl gelijk aan bestaande cards) ===== */
.contactpage-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Linker kaart met tekst en knop */
.contactpage-card {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 400px;
}

/* Hover effect (lichte “til” animatie zoals bij bestaande kaarten) */
.contactpage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Tekst in de kaart */
.contactpage-card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.contactpage-card p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

/* Contactknop */
.contactpage-button {
  background: #4133B7;
  color: white;
  padding: 14px 26px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.contactpage-button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Rechterkant: Google Map */
.contactpage-map {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 400px;
}

.contactpage-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsieve layout */
@media (max-width: 900px) {
  .contactpage-container {
    flex-direction: column;
    align-items: center;
  }

  .contactpage-card,
  .contactpage-map {
    width: 100%;
    min-height: 350px;
  }
}
