/* Algemene layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #e9ecef;
    color: #333;
    display: flex;
    flex-direction: column;
}

/* Reset & helpers */
* {
    box-sizing: border-box;
}

/* Navigatiebalk */
.page-navbar {
    background-color: #006f3c;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.page-nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

    .page-nav-links li {
        display: inline;
        margin: 0 1rem;
    }

    .page-nav-links a {
        color: white;
        text-decoration: none;
    }

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #a8e6cf;
}

/* Hoofdinhoud vult ruimte tussen header en footer */
main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Zorg dat rijen en kolommen uitrekken tot volledige hoogte */
.row.align-items-stretch {
    flex: 1;
    display: flex;
    align-items: stretch;
}

/* Kolommen */
.column-box {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

/* Schaduw */
.shadow-box {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.3s ease;
}

    .shadow-box:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    }

/* Centraal gestapelde logo's */
.logo-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

    .logo-stack img {
        display: block;
        margin: 0;
        padding: 0;
    }

/* Golf direct onder logo-stack (geen absolute positioning meer) */
.logoGolf {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    margin-bottom: 50px;
}

/* Sticky footer onderaan */
footer.page-footer {
    margin-top: auto;
}

.page-footer {
    flex-shrink: 0;
}

.container-footer {
    background-color: #006f3c;
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Menu knoppen als pill en zelfde stijl als beschikbaarheidsknop */
.btn-nav {
    background-color: #198754; /* zelfde kleur als beschikbaarheidsknop */
    color: white;
    border-radius: 50px; /* pill vorm */
    padding: 0.5rem 1.2rem; /* zelfde padding als rechts geplaatste knop */
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn-nav:hover {
        background-color: #00c867; /* lichtgroen hover */
        color: white; /* contrasterende tekstkleur */
    }

    .btn-nav.active {
        background-color: #00c867; /* lichtgroen geselecteerd */
        color: #006f3c;
    }

/* Maak alle menu-items dezelfde breedte */
.page-nav-links .nav-item {
    margin: 0 0.5rem;
}

.page-nav-links .nav-link.btn-nav {
    min-width: 140px; /* vaste breedte, past bij meeste labels */
    text-align: center;
}

/* Beschikbaarheidsknop pill maken */
.btn-success {
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-success:hover {
        background-color: #00c867; /* iets lichtere groene hover */
        border-color: #00c867;
    }

.section-title {
    position: relative; /* nodig voor absolute positionering van span */
    display: inline-block; /* zodat de width van h2 gevolgd wordt */
}

    .section-title span {
        background-color: #006f3c;
        position: absolute;
        height: 7px;
        width: 100%;
        bottom: 0;
        opacity: 0.4;
        left: 0;
        margin-bottom: 10px;
    }

.g-0 {
    padding-left: 0;
    padding-right: 0;
}

.testimonials .border {
    border-color: #dee2e6 !important;
}

.testimonials .p-4 {
    transition: all 0.3s ease;
}

    .testimonials .p-4:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
    }

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.calendar-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    text-align: center;
    margin-top: 20px;
}

.calendar-header {
    font-weight: bold;
    background-color: #89B921;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.calendar-day {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px 5px;
    min-height: 100px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

    .calendar-day:hover {
        background-color: #f5f5f5;
        transform: scale(1.02);
    }

    .calendar-day.fade {
        color: #ccc;
        background-color: #fafafa;
    }

    .calendar-day .date {
        display: block;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .calendar-day a {
        font-size: 0.85rem;
        display: block;
        color: #343a40;
        text-decoration: none;
    }

        .calendar-day a.meeting {
            color: #c0392b;
            font-weight: 500;
        }

        .calendar-day a.call {
            color: #e67e22;
            font-weight: 500;
        }

        .calendar-day a.available {
            color: #27ae60;
            font-weight: 600;
        }

.month-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.fixed-textarea {
    resize: none;
}

.independence-info {
    margin-top: 125px;
}

.independence-info p {
    font-size: 0.9rem;
    line-height: 1.4;
    border-left: 3px solid #28a745;
    padding-left: 5px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .independence-info p:hover {
        color: #198754;
        transform: translateX(3px);
    }

ul.timeline {
    margin-left: 10px;
}

.timeline li {
    border-left: solid 2px #ececec;
    list-style: none;
    padding: 0 0 40px 30px;
}

    .timeline li:before {
        content: "";
        border: solid 2px;
        width: 8px;
        height: 8px;
        border-radius: 50px;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        font-size: 8px;
        margin-left: -35px;
        font-weight: 400;
        background: #fff;
        display: block;
        position: absolute;
        margin-top: -1px;
    }

    .timeline li .line-title {
        font-size: 16px;
        line-height: 6px;
    }

    .timeline li:first-child {
        padding: 0 0 60px 19px;
    }

        .timeline li:first-child:before {
            border: 0;
            background: none;
            position: relative;
            background-color: #006f3c;
            color: white;
        }

        .timeline li:first-child i {
            float: left;
            margin-left: -30px;
            padding: 18px 16px;
            border-radius: 50px;
            margin: -14px -55px;
            background: #fff;
            width: 73px;
            text-align: center;
            background-color: #006f3c;
            color: white;
            font-size: 24px;
        }

    .timeline li .section-title {
        padding-left: 20px;
        margin-left: 30px;
    }

    .timeline li span {
        font-size: 12px;
        padding: 9px 0;
        display: block;
    }

    .timeline li:last-child {
        border: 0;
        margin-left: 2px;
    }

.timeline i  {
    background-color: #006f3c;
    color: white;
}

.timeline-title {
    font-size: 30px;
    font-weight: 600;
    margin-left: 25px;
    line-height: 40px;
}

.skill-list li {
    list-style: none;
}

.skill-list h3 {
    font-size: 12px;
}

.skill-list .progress {
    margin: 10px 0 20px;
    display: block;
    height: 5px;
    position: relative;
    width: 100%;
    overflow: visible;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background: #dfdfdf;
    box-shadow: 0;
}

    .skill-list .progress .percentage {
        border-radius: 50px 0 0 50px;
        -moz-border-radius: 50px 0 0 50px;
        -webkit-border-radius: 50px 0 0 50px;
        -ms-border-radius: 50px 0 0 50px;
        -o-border-radius: 50px 0 0 50px;
        bottom: 0;
        position: absolute;
        top: 0;
    }

.clients .client {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0px 0px 48px 0px rgba(4, 6, 4, 0.08);
    width: 100%;
    padding: 26px 16px;
    margin-top: 30px;
    height: 220px;
    vertical-align: middle;
    text-align: center;
    align-items: center;
    display: flex;
}

.clients .client img {
    width: 180px;
    height: 180px;
}
