/* =========================
   BASIS
========================= */

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: #222;
    background: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

.site-header {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.logo {
    max-width: 160px;
    height: auto;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    background: url('../../images/banner-vergaderen-2026.jpg') center center / cover no-repeat;
    color: #ffffff;
    padding: 180px 0;  /* hoger */
    text-align: center;
    overflow: hidden;
}


/* Donkere overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* Zorg dat tekst boven overlay ligt */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero .btn-primary {
    background: #ffffff;
    color: #000000;
}


.btn-primary:hover {
    background: #e5e5e5;
}

/* =========================
   SECTIES
========================= */

.section {
    padding: 90px 0;
}

.section.alt {
    background: #f7f7f7;
}

.section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section p {
    font-size: 16px;
    color: #444;
}

/* =========================
   PRICING BLOKKEN
========================= */

.pricing {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.pricing div {
    background: #f4f4f4;
    padding: 25px 30px;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pricing strong {
    font-weight: 700;
}

/* =========================
   GALLERY
========================= */

.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 20px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* =========================
   FORMULIER
========================= */

.contact-form {
    max-width: 700px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: border 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #000;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form p {
    font-weight: 700;
    margin-top: 30px;
}

.contact-form input[type="radio"],
.contact-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.contact-form button {
    background: #000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #333;
}
.form-error {
    background: #ffe5e5;
    color: #a10000;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-weight: 500;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #111;
    color: white;
    padding: 50px 0;
    text-align: center;
    font-size: 14px;
}

/* =========================
   HONEYPOT
========================= */

.honeypot {
    position: absolute;
    left: -9999px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 30px;
    }

    .pricing {
        flex-direction: column;
    }

    .gallery-item img {
        height: 200px;
    }

}
/* =========================
   TOP HEADER
========================= */

.top-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 150px;
}

.header-center {
    text-align: center;
}

.availability-btn {
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.availability-btn:hover {
    background: #333;
}

.header-contact {
    text-align: right;
    font-size: 14px;
}

.header-contact .phone {
    font-weight: 700;
}

.header-contact .email {
    color: #555;
}

/* =========================
   INFO BAR (DONKER)
========================= */

.info-bar {
    background: #0d0d0d;
    color: #ffffff;
    padding: 18px 0;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.info-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    text-align: center;
}

.info-item strong {
    font-weight: 700;
}



/* =========================
   MEETING BLOCK
========================= */

.meeting-inner {
    display: flex;
    gap: 60px;
    align-items: stretch;   /* belangrijk */
}


.meeting-text {
    flex: 1.2;
	  margin-top: 0;
}

.meeting-image {
    flex: 1;
}

.meeting-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.meeting-text h2 {
	  margin-top: 0;
    font-size: 24px;        /* kleiner */
    font-weight: 600;       /* minder zwaar */
    margin-bottom: 20px;
    color: #111;
}


.meeting-text p {
    margin-bottom: 18px;
    color: #444;
}

.meeting-text h4 {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 700;
}

.price-block {
    margin-bottom: 20px;
}

.price-block strong {
    font-weight: 700;
}

.small-note {
    font-size: 14px;
    color: #666;
}

/* Dunne scheidingslijn onder blok */
.meeting-block {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 80px;
}

.section.meeting-block {
    padding-top: 20px;   /* overschrijft de 90px */
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .header-contact {
        text-align: center;
    }

    .info-bar-inner {
        flex-direction: column;
        text-align: center;
    }
	
	.meeting-inner {
        flex-direction: column;
    }

    .meeting-image {
        margin-top: 30px;
    }

	.team-inner {
        flex-direction: column;
        gap: 40px;
    }
}
/* =========================
   DESKTOP HERO FIX
========================= */

@media (min-width: 1200px) {
    .hero {
        padding: 240px 0;
    }
}


.jump-buttons {
    text-align: center;
    margin-bottom: 10px;
	margin-top: 10px;
}

.jump-btn {
    display: inline-block;
    background: #666;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    margin: 0 8px;
    transition: 0.3s ease;
}

.jump-btn:hover {
    background: #444;
}

.jump-btn.light {
    background: #e0e0e0;
    color: #000;
}

.jump-btn.light:hover {
    background: #ccc;
}

/* =========================
   TEAM SPECIAL
========================= */

.team-special {
    padding-top: 60px;
}

.team-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
}

.team-inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.team-left {
    flex: 1.2;
}

.team-right {
    flex: 1;
}

.team-left h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.team-left p {
    margin-bottom: 18px;
    color: #444;
}

.highlight {
    font-weight: 600;
    margin-top: 20px;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #444;
}

.team-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-weight: bold;
}
/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox-img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
.form-success {
    background: #e6f7ec;
    border: 1px solid #2ecc71;
    color: #1e7e34;
    padding: 18px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* =========================
   CALENDAR SECTION
========================= */

.calendar-section {
    background: #eeeeee;
}


.calendar-intro {
    margin-bottom: 30px;
    color: #555;
}

.calendar-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.calendar-wrapper iframe {
    width: 100%;
    height: 600px;
    border: 0;
}

/* Mobiel optimalisatie */
@media (max-width: 768px) {
    .calendar-wrapper iframe {
        height: 500px;
    }
}
html, body {
    height: auto !important;
    overflow-x: hidden;
}

#main, .fusion-row {
    overflow: visible !important;
}

#content {
    padding-top: 0 !important;
}

