:root {
    --bs-primary: #fed136; /* Custom primary color */
    --bs-secondary: #6c757d; /* Secondary color */
    --bs-success: #28a745; /* Success color */
    --bs-info: #17a2b8; /* Info color */
    --bs-warning: #ffc107; /* Warning color */
    --bs-danger: #dc3545; /* Danger color */
    --bs-light: #f8f9fa; /* Light color */
    --bs-dark: #343a40; /* Dark color */
    --navbar-bg-color: #eeda88;
    --navbar-brand-color: #fed136;
    --navbar-link-color: #717A0A;
    --navbar-link-hover-color: #000;
}
.content-container {
    max-width: 900px; /* Kies een breedte die lijkt op de oude site */
    margin: 0 auto; /* Centreert de container horizontaal */
    padding: 20px; /* Optioneel, voor wat ruimte binnen de container */
}



body {
    margin: 0;
    font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-image: url("../images/background.png");
    width: 100%;
    height: 100%;
    background-attachment: fixed;
  }

.btn-primary {
    background-color: transparent; /* Gebruik de primaire kleur uit :root */
    border-color: #f3dea7;
    color: #f3dea7; /* Zorg dat de tekst goed leesbaar blijft */
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: darken(var(--bs-primary), 10%) !important; /* Iets donkerdere kleur voor hover-effect */
    border-color: darken(var(--bs-primary), 10%) !important;
}


/* Navbar */
.navbar {
    background-color: var(--navbar-bg-color);
    padding: 1rem;
}

.navbar .navbar-brand {
    color: var(--navbar-brand-color);
    font-weight: 700;
    text-transform: none;
}

.navbar-brand img {
    height: 40px; /* Pas de hoogte aan */
    width: auto; /* Zorg dat de breedte proportioneel blijft */
    max-width: 100%; /* Zorg dat de afbeelding niet te groot wordt */
}


.navbar .navbar-nav .nav-link {
    color: var(--navbar-link-color);
    text-transform: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--navbar-link-hover-color);
}

.navbar.navbar-shrink {
    background-color: var(--navbar-bg-color);
    padding: 0.5rem 0;
}

.navbar-toggler {
    background-color: var(--navbar-brand-color);
    color: #fff;
}

.navbar-toggler:hover {
    background-color: darken(var(--navbar-brand-color), 10%);
}

section {
    scroll-margin-top: 80px; /* Pas aan op basis van de hoogte van je navigatiebalk */
    padding-top: 50px;      /* Zorgt ervoor dat de inhoud niet overlapt */
}


/* mastheader */
header.masthead {
    position: relative; /* Maak de masthead een positionering-context */
    padding-top: calc(10.5rem + 70px); /* Voeg hoogte van de navbar toe */
    padding-bottom: 6rem;
    text-align: center;
    color: #f3dea7;
    background-image: url("../images/voorstel/1.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    z-index: 1; /* Zorg dat de content boven de overlay staat */
}

/* Voeg een overlay toe met een pseudo-element */
header.masthead::before {
    content: ""; /* Pseudo-element zonder inhoud */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Donkere overlay met 50% transparantie */
    z-index: -1; /* Zorg dat de overlay onder de content komt */
}

  header.masthead .masthead-subheading {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-bottom: 25px;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  header.masthead .masthead-heading {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 3.25rem;
    margin-bottom: 2rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  
  @media (min-width: 768px) {
    header.masthead {
      padding-top: 17rem;
      padding-bottom: 12.5rem;
    }
    header.masthead .masthead-subheading {
      font-size: 2.25rem;
      font-style: italic;
      line-height: 2.25rem;
      margin-bottom: 2rem;
    }
    header.masthead .masthead-heading {
      font-size: 4.5rem;
      font-weight: 700;
      line-height: 4.5rem;
      margin-bottom: 4rem;
    }
  }
/* section color */
.bg-light {
    background-color: transparent !important; /* Verwijder achtergrondkleur */
}
/* Services */
#Services {
    background-color: #f8f9fa;
}

#Services h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

#Services p {
    font-size: 1rem;
    color: #666;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.85;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    color: #555;
}

.card-price {
    color: black
}

.card-img-top {
    height: 200px; /* Houd de hoogte van de afbeelding consistent */
    object-fit: cover; /* Zorg ervoor dat de volledige afbeelding zichtbaar blijft */
    object-position: center; /* Plaats de afbeelding aan de onderkant */
    width: 100%; /* Vul de volledige breedte van de kaart */
    background-color: #f8f9fa; /* Optioneel: achtergrondkleur voor lege ruimte */
}


.container .row.gy-4 {
    row-gap: 2rem;
}

/* Contact */
section#contact {
    background-color: #EEDA88;
    opacity: 0.6;
    background-repeat: no-repeat;
    background-position: center; 
  }
  
  section#contact .section-heading {
    color: #000;
  }

  .map-container-6{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
    }
    .map-container-6 iframe{
    left:0;
    top:0;
    height:75%;
    width:100%;
    position:absolute;  
    }
  
    /* icons */
    .btn-floating{
        color: #717A0A;
    }

/* footer */
.footer {
    background-color: var(--navbar-bg-color);
    opacity: 1;
}

/* Laadscherm container */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(254, 199, 111); /* Lichte overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Loader (ronde animatie) */
.loader {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3; /* Lichtgrijze buitenrand */
    border-top: 6px solid #fed136; /* Blauwe animatierand */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Draaiende animatie */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

  /* Scroll to Top Button */
  #scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 100px; 
    right: 20px;
    z-index: 100; 
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #f1c40f;
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
  
  #scrollTopBtn:hover {
    background-color: #e1b10e;
  }
  
h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 180px !important; /* Dwingt de maximale breedte af */
    max-height: 50px !important;
    width: auto !important;
    height: 50px !important;
    overflow: hidden;
    white-space: nowrap;
    transform: scale(1) !important; /* Voorkomt onbedoeld schalen */
    z-index: 110 !important;
}

.whatsapp-button img {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

/* Zorg dat de knop kleiner wordt op kleine schermen */
@media screen and (max-width: 1080px) and (min-resolution: 2.5dppx) {
    .whatsapp-button {
        bottom: 15px;
        right: 10px;
        padding: 8px 12px;
        font-size: 14px;
        max-width: 160px !important;
        max-height: 40px;
        transform: scale(0.8) !important; /* Schaal terug voor Xiaomi */

    }

    .whatsapp-button img {
        width: 20px !important;
        height: 20px !important;
    }
}

@supports (-webkit-touch-callout: none) {
    .whatsapp-button {
        transform: scale(0.85) !important;
        max-width: 160px !important;
    }
}

/* reviews */
#Reviews {
    padding-top: 20px !important; 
    padding-bottom: 10px !important; 
}

/* Google Reviews Section */
#google-reviews {
    padding: 50px 0;
    background-color: transparent;
    text-align: center;
    max-width: 900px;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.swiper-container {
    width: 100%;
    max-width: 900px;
    padding: 20px 0;
    margin: auto;
}

.swiper-slide {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 350px; /* Beperkt de breedte van elke review */
    margin: auto; /* Centreert de cards */
    display: flex;
    flex-direction: column;
}

/* Op mobiel zorg ervoor dat slechts 1 review zichtbaar is */
@media (max-width: 768px) {
    .swiper-slide {
        max-width: 100%; /* Gebruik volledige breedte op mobiel */
    }
}

.review-container {
    max-width: 90%;
    margin: auto;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    margin-bottom: 10px;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-rating {
    font-size: 20px;
    color: #FFD700; /* Goudkleurig */
}

.review-text {
    font-size: 16px;
    line-height: 1.5;
    max-width: 90%;
    margin: auto;
    word-break: break-word; /* Zorgt dat lange woorden correct afbreken */
}

.review-text a {
    color: #007bff;
    text-decoration: none;
}

.review-text a:hover {
    text-decoration: underline;
}

/* Carousel */

.swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.modal-content {
    border-radius: 10px;
    padding: 20px;
}
.review-author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.swiper-button-prev, .swiper-button-next {
    color: #333 !important; /* Zorgt voor donkere pijlen */
    background: rgba(255, 255, 255, 0.7); /* Achtergrond zodat ze zichtbaar zijn */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.swiper-button-next {
    right: -10px;
}

.swiper-button-prev {
    left: -10px;
}

/* Swiper paginatie (bolletjes) */
.swiper-pagination-bullet {
    background-color: grey !important; /* Standaard kleur (grijs) */
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background-color: #fed136 !important; /* Actieve bol zwart */
    opacity: 1;
}

/* Zorg dat de pijlen correct worden uitgelijnd op mobiel */
@media (max-width: 768px) {
    .swiper-button-prev {
        left: 5px !important;
    }
    .swiper-button-next {
        right: 5px !important;
    }
}


/* Header Reviews */

#google-reviews-summary {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-top: 0 !important;
    padding: 20px 0;
    margin-bottom: 10px !important;
}

#google-reviews-summary .review-btn {
    background: #4285F4;
    border: none;
    transition: 0.3s ease;
    text-decoration: none;
    color: #fff;
}

#google-reviews-summary .review-btn:hover {
    background: #357AE8;
}

#google-reviews-summary h2 {
    font-size: 2rem;
}

.text-warning {
    font-size: 1.5rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .google-reviews-container {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .review-card {
        padding: 20px;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .swiper-pagination {
        bottom: 10px !important;
    }
}