/* =============================================================
   Nexelio — Global Utilities CSS  v1.0
   Geladen op alle pagina's via mu-plugin (nexelio-global-utilities)
   Bevat: base, utilities, buttons, animaties
   Bevat NIET: reset, GP overrides, hero, page-specifieke componenten
   ============================================================= */

/* ── Base ──────────────────────────────────────────────────── */

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0D9488;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0F766E;
}

/* ── Utilities ─────────────────────────────────────────────── */

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

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

/* ── Labels ────────────────────────────────────────────────── */

.label {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0F766E;
    display: inline-block;
    margin-bottom: 16px;
}

.label--light {
    color: #5EEAD4;
}

/* ── Headings ──────────────────────────────────────────────── */

h1,
h2,
h3 {
    font-family: 'Lexend', sans-serif;
    color: #0C1A1A;
}

h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
}

h3 {
    font-weight: 600;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.3;
}

/* ── Buttons ───────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Primair — oranje */
.btn-primary {
    background-color: #F97316;
    color: #FFFFFF;
    border-color: #F97316;
}

.btn-primary:hover {
    background-color: #EA580C;
    border-color: #EA580C;
    color: #FFFFFF;
}

/* Secundair — teal */
.btn-secondary {
    background-color: #0F766E;
    color: #FFFFFF;
    border-color: #0F766E;
}

.btn-secondary:hover {
    background-color: #0C5E58;
    border-color: #0C5E58;
    color: #FFFFFF;
}

/* Outline teal (op lichte achtergrond) */
.btn-outline {
    background-color: transparent;
    color: #0F766E;
    border-color: #0F766E;
}

.btn-outline:hover {
    background-color: #F0FDFA;
    color: #0F766E;
}

/* Outline wit (op donkere achtergrond) */
.btn-outline-white {
    background-color: transparent;
    color: #F0FDFA;
    border-color: #F0FDFA;
}

.btn-outline-white:hover {
    background-color: rgba(240, 253, 250, 0.1);
    color: #F0FDFA;
}

/* Outline licht-teal (op teal achtergrond) */
.btn-outline-light {
    background-color: transparent;
    color: #CCFBF1;
    border-color: rgba(204, 251, 241, 0.5);
}

.btn-outline-light:hover {
    background-color: rgba(204, 251, 241, 0.1);
    color: #CCFBF1;
}

/* Grootte-varianten */
.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

/* ── CTA Group ─────────────────────────────────────────────── */

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-group--center {
    justify-content: center;
}

/* ── Fade-in animaties ─────────────────────────────────────── */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 768px) {
    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-group .btn {
        max-width: 320px;
    }
}

/* ========================================
   HEADER / NAVIGATIE
   ======================================== */
.site-header .inside-header {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header .site-logo img {
  max-height: 48px;
  width: auto;
}

.site-header .main-navigation {
  display: flex;
  align-items: center;
}

.site-header .main-navigation .main-nav > ul {
  display: flex;
  align-items: center;
}

.site-header .main-navigation .main-nav > ul > li > a {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 12px 16px;
}

/* Header achtergrond met subtiele schaduw voor leesbaarheid */
.site-header {
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 100;
}
