/*============================
  Fonts
============================*/
@font-face {
    font-family: 'Neue Haas Grotesk Display';
    src: url('/static/fonts/NeueHaasDisplayRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display';
    src: url('/static/fonts/NeueHaasDisplayMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/*============================
    Font Usage
  ============================*/
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Neue Haas Grotesk Display', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

/*============================
    Kleuren (PageAudit-stijl)
  ============================*/
:root {
    --color-midnight: #1B2A41;
    --color-azure: #3A8DFF;
    --color-softgray: #E5E7EB;
    --color-lime: #B8FF58;
    --color-alert: #FF6B6B;
    --color-azure-dark: #196cd4;
    --color-azure-darker: #155ab2;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #b8ff58, #7fdc3d);
    color: white;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffd166, #ff9f1c);
    color: white;
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #ff6b6b, #c9184a);
    color: white;
}


/*============================
    Bootstrap overschrijvingen
  ============================*/
.btn-primary {
    background-color: var(--color-azure-dark);
    border-color: var(--color-azure-dark);
    color: #fff;
    font-weight: 600;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-azure-dark);
    color: var(--color-azure-dark);
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-azure-darker);
    border-color: var(--color-azure-darker);
}

.btn-danger {
    background-color: var(--color-alert);
    border-color: var(--color-alert);
}

.text-primary {
    color: var(--color-azure-dark) !important;
}

.bg-dark {
    background-color: var(--color-midnight) !important;
}

.bg-light {
    background-color: var(--color-softgray) !important;
}

/*============================
    Extra: Titels & accent
  ============================*/
.page-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-midnight);
}

.accent-lime {
    color: var(--color-lime);
}

.alert-red {
    color: var(--color-alert);
}

/*============================
    PageAudit knoppen: hover, active, accent
  ============================*/

/* 🔷 Primaire button (hover & focus) */
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-azure-darker);
    border-color: var(--color-azure-darker);
}

/* 🔴 Danger button (hover & focus) */
.btn-danger:hover,
.btn-danger:focus {
    background-color: #e85656;
    border-color: #e85656;
}

/* 🟢 Accentknop */
.btn-accent {
    background-color: var(--color-lime);
    border: none;
    color: #000;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: #a1ea4a;
    color: #000;
}

/* ⚪ Lichtgrijze secundaire knop */
.btn-outline-lightgray {
    background-color: transparent;
    border: 1px solid var(--color-softgray);
    color: #333;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-lightgray:hover,
.btn-outline-lightgray:focus {
    background-color: #f0f0f0;
    color: #000;
}


/*============================
    Navigatielinks: underline hover animatie
  ============================*/

.nav-link,
.inline-link {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.nav-link::after,
.inline-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 0%;
    background-color: var(--color-azure-dark);
    transition: width 0.3s ease;
}

/* Algemene active underline voor gewone links */
.navbar .nav-link.active:not(.dropdown-toggle)::after {
    width: 100%;
}

/* Active dropdown-parent (zoals SEO) → underline de parent */
.navbar .nav-link.dropdown-toggle.active {
    text-decoration: underline;
    color: var(--color-azure-dark);
}

/* Zorg dat dropdown-items geen underline hebben */
.dropdown-menu .dropdown-item.active {
    text-decoration: none;
    color: inherit;
    /* blijf normale tekstkleur */
}

/* Verwijder visited link kleur bij dropdown-items */
.dropdown-menu .dropdown-item:visited {
    color: inherit;
}



.accordion-button:focus {
    box-shadow: none;
    border-color: var(--color-azure-dark);
}

.accordion-button:not(.collapsed) {
    color: #1B2A41;
    background-color: rgba(58, 141, 255, 0.08);
    /* lichte azure tint */
}

.nav-link.dropdown-toggle::after {
    display: none;
}

.navbar .nav-link.dropdown-toggle:hover {
    color: var(--color-azure-dark);
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease-in-out;
}


/*============================
    Formulier confirmatie animatie
  ============================*/

.contact-success-container {
    animation: fadeIn 0.6s ease-in-out;
    margin-bottom: 2rem;
}

.checkmark {
    width: 60px;
    height: 60px;
    stroke: #3A8DFF;
    /* Azure Blue */
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: drawCheck 0.5s ease-out forwards;
    margin: 0 auto;
}

@keyframes drawCheck {
    from {
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
    }

    to {
        stroke-dasharray: 48;
        stroke-dashoffset: 0;
    }
}

.success-text {
    font-size: 1.25rem;
    color: #1B2A41;
    /* Midnight Blue */
    animation: textFadeIn 0.7s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




@media (max-width: 768px) {
    .hero-section {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }
}

.contact-left {
    background: var(--color-azure-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    width: 120px;
    height: 120px;
    background: white;
    top: 10%;
    left: 20%;
}

.contact-left::after {
    width: 80px;
    height: 80px;
    background: #B8FF58;
    bottom: 15%;
    right: 10%;
}

/*============================
    Formulier reset password animatie
  ============================*/

.contact-success-container {
    animation: fadeIn 0.6s ease-in-out;
    margin-bottom: 2rem;
}

.checkmark {
    width: 60px;
    height: 60px;
    stroke: #3A8DFF;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: drawCheck 0.5s ease-out forwards;
    margin: 0 auto;
}

@keyframes drawCheck {
    from {
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
    }

    to {
        stroke-dasharray: 48;
        stroke-dashoffset: 0;
    }
}

.success-text {
    font-size: 1.25rem;
    color: #1B2A41;
    animation: textFadeIn 0.7s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*============================
    aanspreekpunt homepage
  ============================*/

.profile-picture {
    max-width: 400px;
}

.mobile-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .profile-picture {
        max-width: 200px !important;
    }

    .mobile-container {
        margin-top: 0px;
    }
}

.icon-box {
        background: #ffffff;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: left;
        height: 100%;
      }
      .icon-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
      }
      .icon-box i {
        color: #3a8dff;
        font-size: 2rem;
        margin-bottom: 1rem;
      }
      .icon-box h5 {
        font-weight: 700;
        margin-bottom: 0.75rem;
        font-size: 1.2rem;
      }
      .icon-box p {
        color: #6c757d;
        font-size: 1rem;
      }
      .section-intro {
        max-width: 700px;
        margin: 0 auto 2rem auto;
      }
      .eea-section {
        background: linear-gradient(135deg, #3a8dff 0%, #004aad 100%);
        color: #fff;
        border-radius: 16px;
        padding: 3rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-top: 4rem;
        text-align: left;
      }
      .eea-section h3 {
        font-weight: 700;
        margin-bottom: 1rem;
      }
      .eea-section p {
        color: #e0e7ff;
      }
      .eea-highlight {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 1.5rem;
        border-radius: 12px;
        margin-top: 1.5rem;
      }
      .eea-highlight p {
        margin: 0;
        color: #ffffff;
      }
      .process-step {
        background: #ffffff;
        border: 1px solid #dee2e6;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
      }
      .process-step:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
      }
      .process-step img {
        height: 70px;
        margin-bottom: 1rem;
      }
      .process-step h4 {
        font-weight: 700;
        margin-bottom: 0.75rem;
      }
      .process-step p {
        color: #6c757d;
        font-size: 1rem;
      }
      .accordion-button {
        background-color: #fff;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 400;
        font-size: 1.1rem;
      }

      .accordion-button:not(.collapsed) {
        background-color: #f1f5f9;
        color: #196cd4;
        box-shadow: none;
        font-weight: 500;
      }

      .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
      }

      .accordion-body {
        font-size: 1rem;
      }