/* KaminMeister Belgien – Warm, Friendly Style CSS */

/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    height: 100%;
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    background: #FFF9F5;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #212121;
    line-height: 1.6;
    letter-spacing: 0.005em;
    font-size: 1rem;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
ul, ol {
    padding-left: 1.6em;
}
a {
    color: #1A237E;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #b28100;
    outline: none;
}
table {
    border-collapse: collapse;
    width: 100%;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #1A237E;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 600; color: #5C5048; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
.subheadline {
    font-size: 1.25rem;
    color: #745a2f;
    margin-bottom: 24px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
strong, b { font-weight: bold; }

/* LAYOUT CONTAINERS */
.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    /* Prevent overlapping */
}
.content-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.section {
    background: #FFF;
    margin-bottom: 60px;
    padding: 40px 20px;
    border-radius: 28px;
    box-shadow: 0 4px 18px 0 rgba(240, 168, 70, 0.11);
}

/* HEADER & NAVIGATION */
header {
    background: #fffdfa;
    box-shadow: 0 2px 8px rgba(240,168,70,0.04);
    border-bottom: 1px solid #FFE5BA;
    margin-bottom: 0;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 20px 10px 20px;
    min-height: 70px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-nav a {
    padding: 8px 16px;
    border-radius: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    color: #4B3F28;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
    background: #ffe6b8;
    color: #1A237E;
}
.main-nav .cta.primary {
    background: #FFC107;
    color: #1A237E;
    font-weight: bold;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(255,193,7,0.10);
    padding: 8px 22px;
    margin-left: 12px;
    transition: background 0.19s, color 0.19s, box-shadow 0.19s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
    background: #ffd442;
    color: #0d123e;
    box-shadow: 0 4px 18px rgba(255,193,7,0.17);
}
.mobile-menu-toggle {
    display: none;
    background: #FFC107;
    border: none;
    padding: 6px 14px;
    font-size: 2rem;
    border-radius: 16px;
    color: #1A237E;
    cursor: pointer;
    margin-left: 8px;
    transition: background 0.19s, box-shadow 0.19s;
    z-index: 1500;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: #ffd442;
    box-shadow: 0 2px 8px rgba(255,193,7,0.13);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: #fffdfa;
    box-shadow: 2px 0 24px rgba(27,24,13,0.10);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.33s cubic-bezier(.66, .07, .45, 1.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 32px;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: #FFC107;
    color: #1A237E;
    border: none;
    font-size: 2.2rem;
    border-radius: 18px;
    position: absolute;
    top: 16px;
    right: 20px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(255,193,7,0.13);
    transition: background 0.18s;
    z-index: 2010;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
    background: #ffd442;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
    width: 100%;
    align-items: flex-start;
}
.mobile-nav a {
    font-size: 1.3rem;
    padding: 12px 30px;
    color: #0e183e;
    border-radius: 18px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    transition: background 0.13s, color 0.13s;
    width: 90%;
    letter-spacing: 0.02em;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    background: #fff0ca;
    color: #d19700;
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
@media (max-width: 900px) {
    .mobile-menu {
        display: flex;
    }
}

/* SECTIONS & CARDS - Warm & Friendly */
.feature-grid,
.benefit-grid,
.service-list,
.value-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    margin: 32px 0 12px 0;
}
.feature-grid > div,
.benefit-grid > div {
    flex: 1 1 220px;
    min-width: 220px;
    background: #FEF6E1;
    border-radius: 22px;
    padding: 20px 16px 22px 16px;
    box-shadow: 0 2px 12px 0 rgba(255,193,7,0.16);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    transition: box-shadow 0.18s, transform 0.16s;
}
.feature-grid > div:hover,
.benefit-grid > div:hover {
    box-shadow: 0 6px 24px 0 rgba(255,193,7,0.22);
    transform: translateY(-3px) scale(1.025);
}
.feature-grid img, .benefit-grid img {
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
}
.value-icons {
    gap: 28px;
    margin: 22px 0 0 0;
}
.value-icons img {
    width: 56px;
    height: 56px;
    background: #fff7ea;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 4px 16px rgba(255,193,7,0.08);
}

.service-list {
    gap: 24px;
    flex-wrap: wrap;
}
.service-list > div {
    flex: 1 1 260px;
    background: #fdf4e5;
    border-radius: 20px;
    padding: 22px 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px 0 rgba(255,193,7,0.08);
    transition: box-shadow 0.15s, transform 0.13s;
}
.service-list > div:hover {
    box-shadow: 0 6px 20px rgba(255,193,7,0.17);
    transform: scale(1.018);
}

.text-section {
    margin: 20px 0 16px 0;
    background: #fffefa;
    border-radius: 14px;
    padding: 20px 18px;
    color: #5c5048;
    box-shadow: 0 1px 7px 0 rgba(255,193,7,0.07);
}

/* TESTIMONIALS */
.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}
.testimonial-card {
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 360px;
    background: #fff7ec;
    border-radius: 22px;
    box-shadow: 0 4px 22px 0 rgba(240,168,70,0.13);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 26px;
    margin-bottom: 20px;
    color: #1A237E;
    transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 28px 0 rgba(255,193,7,0.24);
    transform: translateY(-2px);
}
.testimonial-card p {
    color: #3d2400;
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-name {
    color: #ca931a;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-top: 2px;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* FAQ ACCORDION */
.faq-accordion {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: #FFF8E1;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(255,193,7,0.16);
    padding: 18px 24px;
    margin-bottom: 8px;
}
.faq-item h3 {
    font-size: 1.13rem;
    margin-bottom: 6px;
    color: #B28100;
    font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
    color: #462d00;
    font-size: 1rem;
}

/* CONTACT INFO SHORT */
.contact-info-short ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 14px;
}
.contact-info-short li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: #4B3F28;
}
.contact-info-short a {
    color: #1A237E;
}
.location-map {
    background: #FFF8E1;
    border-radius: 18px;
    padding: 18px 24px;
    color: #1a237e;
    margin-top: 22px;
}

/* BUTTONS & CTA */
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #FFC107;
    color: #1A237E;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 26px;
    box-shadow: 0 2px 10px 0 rgba(255,193,7,0.13);
    padding: 12px 32px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.18s, color 0.16s, transform 0.14s, box-shadow 0.16s;
    text-shadow: none;
}
.cta.primary {
    background: #FFC107;
    color: #1A237E;
}
.cta.primary:hover, .cta.primary:focus {
    background: #ffd442;
    color: #0d123e;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 22px 0 rgba(255,193,7,0.22);
}
.cta.secondary {
    background: #fff7ec;
    color: #b28100;
    border: 2px solid #ffc107;
    font-weight: 700;
    padding: 10px 26px;
}
.cta.secondary:hover, .cta.secondary:focus {
    background: #ffe6b8;
    color: #1A237E;
    border-color: #ffd442;
}
.cta.small {
    padding: 8px 24px;
    font-size: 1rem;
    border-radius: 22px;
}

/* TABLES */
.price-table {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fffdfa;
    box-shadow: 0 1px 9px 0 rgba(255,193,7,0.09);
    margin: 20px 0 28px 0;
}
.price-table th, .price-table td {
    padding: 14px 20px;
    text-align: left;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.03rem;
    border-bottom: 1px solid #fee2af;
    color: #3e2561;
}
.price-table th {
    background: #fff7e0;
    color: #ad7a08;
    font-size: 1.09rem;
    font-weight: bold;
}
.price-table tr:last-child td {
    border-bottom: none;
}

/* THANK YOU + STATIC PAGES */
.thankyou-message {
    background: #fffdfa;
    padding: 38px 24px;
    border-radius: 22px;
    box-shadow: 0 2px 10px rgba(255,193,7,0.10);
    text-align: center;
    font-size: 1.1rem;
}

/* FOOTER */
footer {
    background: #fffdfa;
    border-top: 1px solid #ffe2af;
    margin-top: 60px;
    padding: 32px 0 16px 0;
    font-size: 0.98rem;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-start;
}
.footer-brand img {
    width: 52px;
    height: auto;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 26px;
    align-items: flex-start;
}
.footer-nav a {
    color: #ab9030;
    padding: 4px 14px;
    border-radius: 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.97rem;
    font-weight: 500;
    background: none;
    transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
    background: #fff7e0;
    color: #826206;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #4B3F28;
    font-size: 0.98rem;
}
.footer-contact img {
    width: 18px;
    vertical-align: middle;
    margin-right: 8px;
}
.footer-contact span {
    font-size: 0.90rem;
    color: #ad9743;
    margin-top: 6px;
}

/* RESPONSIVE LAYOUTS WITH FLEX ONLY */
@media (max-width: 1200px) {
    .container { max-width: 98vw; }
}
@media (max-width: 1024px) {
    header .container, .container, main .container, footer .container {
        padding: 0 10px;
    }
}
@media (max-width: 900px) {
    .feature-grid, .benefit-grid, .service-list, .testimonial-list, .footer-nav {
        gap: 18px;
    }
    .footer-nav {
        gap: 10px 18px;
    }
}
@media (max-width: 760px) {
    .container, header .container, main .container, footer .container {
        max-width: 98vw;
        padding: 0 2vw;
    }
    .feature-grid, .benefit-grid, .service-list, .testimonial-list {
        flex-direction: column;
        gap: 16px;
    }
    .footer-contact, .footer-nav {
        font-size: 1rem;
    }
    .footer-brand img { width: 42px; }
    header .container, footer .container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.3rem; }
    .section { padding: 28px 8px; }
}
@media (max-width: 600px) {
    .main-nav, header .container { display: none; }
    header { min-height: 54px; }
    .footer-contact { font-size: 0.94rem; }
}

.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #fff8e1;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(255,193,7,0.09);
    padding: 22px 16px;
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
    max-width: 400px;
    background: #fff7e0;
    color: #3e2561;
    padding: 26px 20px 18px 20px;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(255,193,7,0.15);
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 1.02rem;
    z-index: 3200;
    animation: cookieSlideIn .55s cubic-bezier(.66,.07,.45,1.2);
}
@keyframes cookieSlideIn {
    from { transform: translateX(-50%) translateY(80px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
.cookie-btn {
    background: #FFC107;
    border: none;
    color: #1A237E;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 20px;
    padding: 8px 22px;
    cursor: pointer;
    margin: 0;
    transition: background 0.14s, color 0.16s, box-shadow 0.13s;
}
.cookie-btn:hover,.cookie-btn:focus {
    background: #ffd442;
    color: #0d123e;
}
.cookie-btn.secondary {
    background: #fff7e0;
    color: #b28100;
    border: 1.5px solid #ffc107;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
    background: #ffe6b8;
    color: #1A237E;
}

/* Cookie Modal */
.cookie-modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(32,29,16,0.34);
    z-index: 3400;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cookieModalFadeIn .3s;
}
@keyframes cookieModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cookie-modal {
    background: #fffdfa;
    border-radius: 26px;
    padding: 34px 20px 24px 20px;
    max-width: 480px;
    width: 95vw;
    color: #2d1a01;
    box-shadow: 0 8px 32px rgba(255,193,7,0.23);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 3500;
    animation: cookieModalPopIn 0.28s cubic-bezier(.66, .07, .45, 1.2);
}
@keyframes cookieModalPopIn {
    from { transform: translateY(60px) scale(.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 6px;
    font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.cookie-toggle {
    width: 38px;
    height: 22px;
    border-radius: 14px;
    background: #ffd442;
    position: relative;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: background 0.17s;
    vertical-align: middle;
    border: none;
}
.cookie-toggle:checked {
    background: #FFC107;
}
.cookie-toggle::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(26,35,126,0.06);
    position: absolute;
    left: 1px;
    top: 1px;
    transition: left 0.17s;
}
.cookie-toggle:checked::after {
    left: 17px;
}
.cookie-modal .cookie-btn {
    width: auto;
    min-width: 50px;
    padding: 8px 20px;
}
.cookie-modal .cookie-btn.secondary {
    margin-left: 10px;
}
.cookie-modal .cookie-list {
    background: #fff7e0;
    border-radius: 14px;
    padding: 10px 14px 10px 16px;
    font-size: 1rem;
}
.cookie-modal .cookie-list strong {
    color: #b28100;
}

/* Utility/Overrides */
*:focus {
    outline: 2px solid #FFC107;
    outline-offset: 2.5px;
}
::-webkit-input-placeholder { color: #826206; opacity: 1; }
::-moz-placeholder { color: #826206; opacity: 1; }
:-ms-input-placeholder { color: #826206; opacity: 1; }
::placeholder { color: #826206; opacity: 1; }

/* Always ensure elements with .card, .testimonial-card, .feature-grid > div, .service-list > div, .faq-item keep at least 20px margin-between */
.card, .testimonial-card, .feature-grid > div, .benefit-grid > div, .service-list > div, .faq-item {
    margin-bottom: 20px;
}

/****** END OF CSS ******/
