/* =====================================================
   ATP LAB Utility Classes
   Vervangt veelgebruikte inline styles in alle pagina's
   ===================================================== */

/* --- Logo --- */
.logo-img {
  max-width: 80px;
  width: 100%;
  height: auto;
}

/* --- Prijstekst in prijskaarten --- */
.price-text {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
  color: aliceblue;
}

/* --- Gecentreerde knop --- */
.btn-center {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/* --- Aliceblue tekstkleur --- */
.text-alice {
  color: aliceblue;
}

/* --- Footer info alinea's (met kleine ondermargin) --- */
.footer-info {
  color: aliceblue;
  margin-bottom: 4px;
}

/* --- Footer lijsten (openingstijden, service) --- */
.footer-list {
  list-style: none;
  padding-left: 0;
  color: aliceblue;
}

/* --- Footer navigatielijst (legal/reviews, flex layout) --- */
.footer-nav-list {
  list-style: none;
  padding-left: 0;
  color: aliceblue;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* --- Aliceblue links --- */
.link-alice {
  color: aliceblue;
}

/* --- Kleur-inherit links (bijv. Instagram in services) --- */
.link-inherit {
  color: inherit;
  text-decoration: none;
}

/* --- Flexbox wrapper voor content secties --- */
.support-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Content kolom: afbeeldingszijde --- */
.content-col-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}

/* --- Content kolom: tekstzijde --- */
.content-col-text {
  flex: 1 1 40%;
  min-width: 280px;
  display: flex;
  align-items: center;
}

/* --- Volle breedte container --- */
.w-full {
  width: 100%;
}

/* --- Responsieve afbeelding (volle breedte) --- */
.img-full {
  max-width: 100%;
  height: auto;
}

/* --- Content met horizontale padding --- */
.content-padded {
  margin-left: 30px;
  margin-right: 30px;
}

/* --- Intro sectie (pakket pagina's) --- */
.intro-section {
  color: #fff;
  padding: 40px 0;
  margin-top: 10px;
}

/* --- Gecentreerd intro tekstblok --- */
.intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}
