/* === Globale design-setup voor "Anas in de zorg" === */

/* Kleurenpalet */
:root {
  --blue-primary: #2B6CB0;      /* hoofdblauw */
  --blue-light: #EBF8FF;        /* zachte lichtblauw achtergrond */
  --yellow-accent: #F6B41A;     /* geel accent (knoppen, highlights) */
  --grey-light: #F7FAFC;        /* neutrale sectie-achtergrond */
  --grey-border: #E2E8F0;
  --text-main: #1A202C;
  --text-muted: #4A5568;
  --white: #FFFFFF;
}

/* Basis typografie & layout */
body {
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
}

/* Koppen consistenter en iets krachtiger */
h1, .h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h3, .h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Secties: meer lucht en rustige achtergronden */
.section {
  padding: 4rem 0;
}

.section-alt {
  padding: 4rem 0;
  background-color: var(--blue-light); /* zachte lichtblauwe blokken */
}

/* Sectie-titel centreren en netter maken */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h1,
.section-title h2 {
  color: var(--blue-primary);
}

.section-title p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0.5rem auto 0;
}

/* Knoppen – geel, modern, met hover */
.btn-primary {
  background-color: var(--yellow-accent);
  border-color: var(--yellow-accent);
  color: #1A202C;
  font-weight: 600;
  border-radius: 999px; /* pill-shape */
  padding: 0.6rem 1.4rem;
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #d89a12;
  border-color: #d89a12;
  color: #1A202C;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.btn-outline-primary {
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-weight: 600;
  color: var(--blue-primary);
  border-color: var(--blue-primary);
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--blue-primary);
  color: var(--white);
}

/* Kaarten (diensten, werkwijze, etc.) – ronder en met schaduw */
.card {
  border-radius: 0.9rem;
  border: 1px solid var(--grey-border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.card-title {
  font-weight: 700;
  color: var(--blue-primary);
}

.card-text {
  color: var(--text-muted);
}

/* Breadcrumbs – subtiel en netjes */
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* Hero / bovenste sectie iets luchtiger */
#main-content .section:first-of-type {
  padding-top: 4.5rem;
  padding-bottom: 3rem;
}

/* Kleine helper voor max-breedte bij langere teksten */
.text-block-narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* Compactere bovenruimte voor pagina-headers (Diensten / Over mij / Werkwijze / Contact) */
.section-page-header {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .section-page-header {
      padding-top: 60px;
      padding-bottom: 60px;
  }
}




/* 
 * Custom CSS for Dutch Care Professional Website
 * Color Palette: Yellow accent, Light Blue, Neutral tones
 */

:root {
  /* Primary colors */
  --yellow-primary: #FDB813;
  --yellow-hover: #E5A711;
  --blue-light: #7AB8E8;
  --blue-primary: #4A9FD8;
  
  /* Neutral colors */
  --white: #FFFFFF;
  --grey-light: #F8F9FA;
  --grey-medium: #6C757D;
  --grey-dark: #343A40;
  --text-primary: #212529;
  --text-secondary: #6C757D;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 1.5rem;
}

/* Global Styles */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
  padding: 0.25rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-primary) !important;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue-primary);
}

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.breadcrumb-item a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--blue-primary);
}

.breadcrumb-item.active {
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(122, 184, 232, 0.12) 0%,
    rgba(253, 184, 19, 0.16) 100%);
  padding: 4.5rem 0 4rem;
}

.hero .container {
  max-width: 960px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* knop in de hero net wat premium */
.hero .btn-primary {
  padding: 0.85rem 2.4rem;
  font-size: 1rem;
  border-radius: 999px;
}

/* Buttons */
.btn-primary {
  background-color: var(--yellow-primary);
  border-color: var(--yellow-primary);
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--yellow-hover);
  border-color: var(--yellow-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-outline-primary {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
}

/* Zelfde pill-stijl voor alle belangrijke knoppen */
.btn-pill {
  border-radius: 999px;      /* mooie pill-vorm */
  padding: 0.6rem 1.6rem;    /* zelfde “feeling” als hero button */
  font-weight: 600;
}

/* Cards */
.card {
  border: none;
  border-radius: 0.375rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.card-body {
  padding: 2rem;
}

.card-icon {
  font-size: 2.2rem;              /* iets kleiner en subtieler */
  color: var(--blue-primary);
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--grey-light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

/* Service Blocks */
.service-item {
  margin-bottom: 2rem;
}

.service-icon {
  font-size: 2rem;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

/* USP Highlights */
.usp-item {
  text-align: center;
  padding: 1.5rem;
}

.usp-item i {
  font-size: 2.5rem;
  color: var(--yellow-primary);
  margin-bottom: 1rem;
}

.usp-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Process Steps */
.process-step {
  background-color: var(--white);
  border-radius: 0.9rem;
  border: 1px solid var(--grey-border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  padding: 2rem;
  margin-bottom: 1.75rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--blue-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Forms */
.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control,
.form-select {
  border: 2px solid #DEE2E6;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 0.2rem rgba(74, 159, 216, 0.25);
}

.contact-info {
  background-color: var(--grey-light);
  padding: 2rem;
  border-radius: 0.375rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--blue-primary);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #DEE2E6;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Footer */
.footer {
  background-color: var(--grey-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--yellow-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom-logo {
  height: 18px;   /* klein en subtiel */
  width: auto;
}

.footer-logo {
  height: 24px;        /* evt. 22–28px proberen */
  width: auto;
  display: block;
}

.footer-brand {
  display: flex;
  align-items: center; /* logo en tekst mooi in één lijn */
  gap: 0.5rem;         /* ruimte tussen logo en tekst */
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }
  
  .hero {
    min-height: 50vh;
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .lead {
    font-size: 1.125rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .usp-item,
  .process-step {
    margin-bottom: 2rem;
  }
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--yellow-primary);
  color: var(--text-primary);
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-main:focus {
  top: 0;
}

/* === Fine-tuning navigatie Anas in de zorg === */

.navbar {
  padding: 0.85rem 0;
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

/* Links iets strakker en met subtiele hover-underline */
.navbar-nav .nav-link {
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* Lijntje onder de link bij hover/active */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* === Card upgrade voor Anas in de zorg === */

/* Kaarten – netter, gelijkmatiger en luxere hover */
.card {
  border-radius: 1rem;
  border: 1px solid var(--grey-border);
  background-color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  height: 100%;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.card-body {
  padding: 2rem 1.75rem;        /* iets meer ruimte binnen de kaart */
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  border-color: var(--blue-primary);
  background-color: #ffffff;
}

.card-title,
.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Iconen boven in de kaarten iets chiquer maken */
.card i[class*="fa-"] {
  font-size: 2.1rem;
  margin-bottom: 0.9rem;
}

/* Leesbaarheid van lead-teksten iets verbeteren */
.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Subtiele scheiding tussen secties op de pagina */
.section + .section {
  border-top: 1px solid #EDF2F7;
}

/* Bio-sectie: tekstkolom iets smaller en rustiger */
.bio-text {
  max-width: 760px;
}

/* Op grote schermen de tekstkolom iets naar binnen trekken */
@media (min-width: 992px) {
  .bio-text {
    margin-left: auto;
  }
}

/* Logo in de navbar */
.navbar-logo {
  height: 48px;   /* maak 40–48px, kijk wat jij mooi vindt */
  width: auto;
  display: block; /* geen extra rare ruimte om het plaatje */
}

/* Nieuwe hero voor de homepage van Anas in de zorg */
.hero-home {
  background: url('../img/hero-bg.jpg') center center/cover no-repeat;
  color: #fff;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* donkere overlay */
}

.hero-home .hero-content {
  position: relative;
  z-index: 1;
}

/* Optioneel: knop in de hero iets sterker maken */
.hero-home .btn-primary {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 999px;
}

/* Tekst in de hero goed leesbaar maken */
.hero-home .lead {
  color: #f5f7ff;      /* bijna wit, iets zachter dan pure wit */
  font-size: 1.1rem;   /* net iets groter, beter leesbaar */
}