* {
    box-sizing: border-box;
}

body {
    font-family: "arial", sans-serif;
    overflow-x: hidden; /* Keeps the breakout elements from creating a scrollbar */
    margin: 0;
    padding: 0;
}

.brand-blue {
    color: #263586;
}

.whatsapp-green {
    color: #25D366;
}

/* 2. Logo Styling */
.main-logo {
    width: 120px; 
    height: auto;
    display: block;
}

/* 3. Contact Info Alignment Fix */
.header-right {
    min-height: 100%; 
}

.contact-link {
    color: inherit;
    transition: opacity 0.2s;
    width: 100%; /* Ensures the clickable area is consistent */
}

.contact-item {
    font-size: clamp(0.85rem, 2vw, 1.1rem); 
    line-height: 1.2;
    display: flex;
    align-items: center;
    /* This ensures text/icons are left-aligned within the right-aligned container */
    justify-content: flex-start; 
    margin: 0;
    white-space: nowrap; /* Prevents text wrapping */
}

/* 4. Responsive Typography */
.fluid-h2 { 
    font-size: clamp(1.4rem, 4vw, 2.5rem); 
}

/* Update these in style.css */
.fluid-h3 {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    display: flex; /* Keeps checkmark and text aligned if text wraps */
    align-items: flex-start;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.bi-check2 {
    /* Applying the bold stroke as requested */
    -webkit-text-stroke: 1.5px #263586;
    margin-top: 0.1rem; /* Fine-tune vertical position */
}

/* Add this to style.css */
/* Update these sections in style.css */

.price-tag {
    font-size: clamp(2.5rem, 8vw, 7rem);
    margin-top: 0.5rem; /* Reduced from 1rem to bring it closer to the text above */
    line-height: 1;    /* Ensures no extra height is added by the font box */
}

.hr-full {
    width: auto; /* Changed from calc to auto to fix the right-side padding gap */
    margin-left: -1.5rem; 
    margin-right: -1.5rem;
    border-top: 1px solid #dee2e6;
    opacity: 1;
}

@media (min-width: 768px) {
    .hr-full {
        margin-left: -3rem;
        margin-right: -3rem;
    }
}

/* email form */
.form-control {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: #263586;
    box-shadow: 0 0 0 0.25rem rgba(38, 53, 134, 0.25);
}

.form-label {
    font-family: "Rubik", sans-serif;
    font-size: 1rem; /* Verhoogd van 0.9rem voor betere leesbaarheid */
    color: #000000;    /* Veranderd naar zwart */
}



/* De donkerblauwe achtergrond */
.brand-blue-bg {
    background-color: #263586;
}

/* Basis voor de links */
.navbar-nav .nav-link {
    color: white !important;
    padding: 15px 5px;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop instellingen (Grote schermen) */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        border-bottom: none; /* Geen horizontale lijnen op desktop */
    }
}

/* Mobiel instellingen (Telefoons) */
@media (max-width: 991px) {
    /* Verwijder de rechterrand bij elk 3e item (het einde van de rij) */
    .navbar-nav .col-4:nth-child(3n) {
        border-right: none;
    }
}



/* Zorg dat de navbar de padding van de container negeert, net als de hr-full */
.navbar.brand-blue-bg {
    margin-left: -1.5rem; 
    margin-right: -1.5rem;
    width: calc(100% + 3rem); /* Compenseert de negatieve marges */
}

@media (min-width: 768px) {
    .navbar.brand-blue-bg {
        margin-left: -3rem;
        margin-right: -3rem;
        width: calc(100% + 6rem);
    }
}

/* Verwijder eventuele standaard Bootstrap border op de navbar */
.navbar {
    border: none !important;
}

/* Schakel de kleurverandering bij hover en focus uit */
/* Schakel de kleurverandering bij hover alleen uit voor de BUTTON */
button.brand-blue-bg:hover, 
button.brand-blue-bg:focus, 
button.brand-blue-bg:active {
    background-color: #263586 !important; /* Terug naar de donkerblauwe merkkleur */
    color: white !important;
    box-shadow: none !important;
    opacity: 1 !important;
    /* Geen marges of breedte hier toevoegen, zodat alleen de knop geraakt wordt */
}

/* Zorg dat de navbar zelf GEEN hover-effecten krijgt die de layout verstoren */
nav.brand-blue-bg:hover {
    margin-left: -1.5rem; 
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
}

@media (min-width: 768px) {
    nav.brand-blue-bg:hover {
        margin-left: -3rem;
        margin-right: -3rem;
        width: calc(100% + 6rem);
    }
}

/* Footer styling met de specifieke brand-blue kleur */
.brand-blue-footer-bg {
    background-color: #263586;
}

.footer-full {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
}

@media (min-width: 768px) {
    .footer-full {
        margin-left: -3rem;
        margin-right: -3rem;
        width: calc(100% + 6rem);
    }
}