/* General */
body {
	background-color: #F5F4F4;
}

.background-blue {
    background-color: #D9EEF5;
}

h2 {
    color: #204060;
}

section {
    padding: 7vh 0;
}

/* Navbar */
.nav-link.active {
    border-bottom: 1px solid #204060;
    margin-bottom: 10px;
}

.nav-item {
    padding: 0 5px;
}

.navbar-logo {
	max-height: 120px;
}

.nav-item a {
    color: #204060;
    font-size: 1.1rem;
}

.btn-appointment {
    background-color: #FFC107;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover-effect voor de knop */
.btn-appointment:hover { 
    transform: translateY(-1px);
    text-decoration: none;
}

@media (max-width: 991px) {
    .portal-mobile {
        display: block !important;
    }

    .portal-desktop {
        display: none;
    }

    .btn-appointment {
        width: 100%; /* Zorgt ervoor dat de knop de volle breedte krijgt op mobiel */
        padding: 12px;
    }

    .nav-link.active {
        font-weight: bold;
        border-bottom: none;
        margin-bottom: 0;
    }
}

/* Sticky appointment button */
/*General styling*/
.sticky-appointment {
    position: fixed;
    top: 30px;
    right: 25px;
    background-color: #FFC107;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/*Calculate right offsets*/
@media (min-width: 992px) {
    .sticky-appointment {
        right: calc(50% - 480px);
    }
}

@media (min-width: 1200px) {
    .sticky-appointment {
        right: calc(50% - 570px);
    }
}

@media (min-width: 1400px) {
    .sticky-appointment {
        right: calc(50% - 660px);
    }
}

/* Verbergen van de knop als deze niet nodig is */
.sticky-appointment.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

/* Hover effect */
.sticky-appointment:hover {
    transform: translateY(-3px);
    background-color: #e0a800;
}

/* Op mobiel minder prominent tonen */
@media (max-width: 768px) {
    .sticky-appointment {
        right: 20px;
        top: 15px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}


/* Header */
.header {
    height: 70vh;
    background: url('../img/compressed-header.jpg') no-repeat center 35%/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* Shadow that apears below */
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.header-content {
    top: -70px;
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.header-content h1 {
    font-size: 2.7rem;
    font-weight: bold;
}

.header-content p {
    font-size: 1.25rem;
}

.shape-divider1,
.shape-divider2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15vh;
}

.shape-divider1 {
    background-color: #204060;
    clip-path: polygon(0 0, 40% 0, 70% 100%, 0 100%);
    z-index: 2;
}
.shape-divider2 {
    flex: 1;
    background-color: #55C1D8;
    clip-path: polygon(40% 30%, 80% 30%, 100% 100%, 0 100%);
    z-index: 1;
}

/* Our values / What we do */
.value-item {
    position: relative;
    min-height: 100px;
    padding-left: 10px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.value-item:hover {
    border-left: 3px solid #204060;
}

.value-item h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #204060; /* Donkerblauw */
}

.value-item p {
    font-size: 1rem;
    color: #555; /* Donkere grijstint */
}

/* For who */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animatie voor vloeiend effect */
}
.hover-card:hover {
    transform: translateY(-10px); /* Beweeg de kaart omhoog */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Voeg een grotere schaduw toe */
}

.for-who-image-container {
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 10px;
}

.for-who-image {
    display: block;
    width: 100%;
    height: auto;
}

.for-who-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
}


/* Reviews */
.reviews-section {
    background-color: #fafafa; /* Zachte achtergrondkleur */
}

.reviewer-name {
    color: #204060;
    font-weight: bold;
    transition: color 0.3s ease;
    text-decoration: none;
}

.review-card:hover .reviewer-name {
    color: #55C1D8;
}

/* Contact */
.form-section {
    padding: 50px 20px;
}

.form-label {
    color: #204060;
    font-weight: 500;
}

.form-control {
    border: none;
    border-bottom: 2px solid #55C1D8;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-bottom: 2px solid #204060;
    box-shadow: none;
}

/* CAROUSEL */
.carousel-item .row {
    display: flex;
}

.carousel-item .col-md-4 {
    display: flex;
}

.carousel-item .card {
    display: flex;
    flex-direction: column;
    flex: 1; /* Cards krijgen allemaal dezelfde hoogte */
}

.carousel-item .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Laat de body uitrekken zodat footer onderaan blijft */
}

.carousel-link {
    text-decoration: none;
    color: #204060;
    margin-top: auto;
}

.carousel-link:hover {
    color: #55C1D8;
}

/* Knop styling */
.btn-primary {
    background-color: #204060;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #172b40; /* Donkerder blauw bij hover */
    transform: translateY(-2px); /* Subtiel hover-effect */
}

/* Diensten */
a.offerte {
    text-decoration: none;
    color: #204060;
}

a.offerte:hover {
    color: #55C1D8;
}


/* CONTACT PAGE */
/* Contact details  */
.contact-col {
    border-left: 1px solid #e3e3e3;
}

.contact-col a {
    text-decoration: none;
    color: #55C1D8;
}

.contact-col a:hover {
    color: #204060;
}

/* Footer */
footer {
    position: relative;
    background-color: #204060;
}

.footer-content {
    position: relative; /* Zorg dat de tekst niet wordt beïnvloed door de clip-path */
    z-index: 1;
}

.footer-content p {
    margin: 0 0 10px; /* Afstand tussen regels */
    font-size: 1rem;
}

footer a {
    text-decoration: none;
    color: inherit;
}

footer a:hover {
    color: #c8c8c8;
}

