/* Theme Variables */
:root {
    --bg-dark: #121212;
    --bg-darker: #0d0d0d;
    --bg-light: #1e1e1e;
    --text-light: #f5f5f5;
    --text-muted: #bbbbbb;
    --accent: #007bff;
    --accent-light: #1e90ff;
    --card-bg: #fff;
    --btn-secondary: #6c757d;
    --cookie-bg: rgba(0, 0, 0, 0.85);
  }




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

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER */
header {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    text-align: center;
}

.logo {
    margin-bottom: 1rem;
}

.logo h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.logo p {
    color: #ccc;
    font-size: 1.1rem;
}

nav {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    justify-content: center;
}

nav ul li.user-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #292929;
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 5px 10px;
}
nav ul li.user-menu a:hover{
  background-color: #007bff;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav a:hover,
nav a.active {
    background-color: #007bff;
}

nav i {
    font-size: 1.1rem;
}

/* HERO SECTION MET VIDEO */
.hero {
    position: relative;
    height: 75vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    text-align: center;
}

.hero-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-book {
    background-color: #007bff;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #0056b3;
}

/* FEATURES SECTION */
.features {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.features h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #007bff;
    margin: 15px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}


/* RESPONSIVE STIJL */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature {
        padding: 1.5rem;
    }
}

/* Basis resets */
section { padding: 2rem 1rem; }
h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: white;
}

/* 1. Partners Grid (auto-fit responsief) */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  align-items: center;
}
.partners-grid img {
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter .3s ease;
}
.partners-grid img:hover {
  filter: none;
}

/* 2. Testimonials as cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1rem;
}
.quote {
  font-style: italic;
  margin-bottom: .75rem;
  color: #555;
}
.author {
  text-align: right;
  font-weight: bold;
  color: #222;
}

/* 3. FAQ Accordion */
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: .75rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  transition: transform .3s ease;
}
.faq-question.active::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-left: .5rem;
  color: #444;
}
.faq-answer.open {
  max-height: 200px; /* zorg dat dit groot genoeg is voor de inhoud */
  margin-top: .5rem;
}

/* Optioneel: kleine media-query voor extra spacing */
@media (min-width: 768px) {
  section { padding: 3rem 2rem; }
}


/* ========================
   Center-align & blok-patroon
   ======================== */

/* 1) Container styling voor alle drie secties */
.partners, .testimonials, .faq {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1rem;
}

/* 2) Afwisselende achtergrondkleuren */
.partners {
  background-color: var(--bg-light);
}
.testimonials {
  background-color: var(--bg-darker);
}
.faq {
  background-color: var(--bg-light);
}

/* 3) Titels accentueren */
.partners h2,
.testimonials h2,
.faq h2 {
  color: var(--accent);
  margin-bottom: 2rem;
}

/* 4) Partners-logo's in het midden */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  justify-items: center; /* centreert alle grid-items horizontaal :contentReference[oaicite:0]{index=0} */
  align-items: center;
}

/* 5) Testimonials als cards in het midden */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 300px;
  margin: 0 auto;
}

/* 6) FAQ-items als blokken */
.faq-item {
  max-width: 600px;
  margin: 1rem auto;
  text-align: left;
  background-color: var(--bg-darker);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}
.faq-question {
  display: block;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
}
.faq-answer {
  color: var(--text-muted);
  margin-top: 0.5rem;
}
/* Extra verticale ruimte voor alle blok-secties */
section.partners,
section.testimonials,
section.faq {
  /* vroeger had je 3rem, verhoog naar 5rem of meer indien gewenst */
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Of, als je liever met margin werkt: */
section.partners,
section.testimonials,
section.faq {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* About Page Styles */
.about-hero {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('path-to-your-about-hero-image.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-content {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.values-section {
    text-align: center;
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.certifications {
    text-align: center;
    margin: 4rem 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cert-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-grid,
    .values-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
}
.about-content {
  padding: 4rem 0;
  background-color: var(--bg-light);
  color: var(--black);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.about-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.about-card h3 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Booking steps section */
.booking-section {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.booking-section h2 {
  font-size: 2.5rem;
  color: #ffff;
  margin-bottom: 40px;
}
.booking-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.step-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.step-card .icon {
  background-color: #333;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #007bff;
}
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #fff;
}
.step-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
}
.booking-cta a {
  display: inline-block;
  background-color: #007bff;
  color: #ffff;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,123,255,0.5);
  transition: transform 0.2s;
}
.booking-cta a:hover {
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .booking-steps { flex-direction: column; }
}

.booking-section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #007bff;
  margin: 15px auto;
}

@media screen and (max-width: 768px) {
  /* Header: zet logo en menu onder elkaar */
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Navigatie: verberg de standaard links, toon hamburger */
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }

  /* Hero: minder hoogte zodat tekst niet 'verdwijnt' */
  .hero {
    height: 60vh;
    position: relative;
  }
  
  .background-video {
    display: none; /* Hide video on mobile */
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #003EB8;
    background: radial-gradient(circle, rgba(0, 62, 184, 1) 0%, rgba(26, 26, 26, 1) 100%);
    z-index: 1;
  }
  
  .hero-overlay {
    z-index: 2;
  }

  /* Features en booking stappen: één kolom */
  .features-grid,
  .booking-steps {
    grid-template-columns: 1fr;
  }

  /* Knoppen en links iets groter aanraakarea */
  a.btn-book,
  .booking-cta a {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1.1rem;
    text-align: center;
  }
}

/* Enhanced Responsive Design */
@media screen and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
    
    .booking-steps {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 992px) {
    .hero-overlay h2 {
        font-size: 2.5rem;
    }
    
    .hero-overlay p {
        font-size: 1.1rem;
    }
    
    .features {
        padding: 3rem 1rem;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo p {
        font-size: 1rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-overlay h2 {
        font-size: 2rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        height: 50vh;
    }
    
    .hero-overlay h2 {
        font-size: 1.75rem;
    }
    
    .hero-overlay p {
        font-size: 0.9rem;
    }
    
    .btn-book {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .features {
        padding: 2rem 1rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature i {
        font-size: 2rem;
    }
    
    .feature h3 {
        font-size: 1.25rem;
    }
    
    .booking-section {
        padding: 40px 15px;
    }
    
    .booking-section h2 {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 20px 15px;
    }
    
    .step-card .icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
    }
    
    .step-card p {
        font-size: 0.85rem;
    }
}

/* Fix for very small screens */
@media screen and (max-width: 360px) {
    .hero-overlay h2 {
        font-size: 1.5rem;
    }
    
    .hero-overlay p {
        font-size: 0.85rem;
    }
    
    .btn-book {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .feature {
        padding: 1.25rem;
    }
}

/* CSS toevoegen aan indexStyle.css */
.bodyguard-info-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 3rem 1rem;
}
.bodyguard-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}
.photo-placeholder {
  flex: 1 1 300px;
  max-width: 400px;
}
.photo-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}
.bodyguard-info-content {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: left;
}
.bodyguard-info-content h2 {
  margin-bottom: 1rem;
  color: var(--accent);
}
.bodyguard-info-content p {
  margin-bottom: 1.5rem;
}
.btn-info {
  display: inline-block;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.btn-info:hover {
  background: var(--accent-light);
}

@media (max-width: 768px) {
  .bodyguard-info-container {
    flex-direction: column;
  }
  .bodyguard-info-content {
    text-align: center;
    max-width: none;
  }
}

