/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #5589d2;
    line-height: 1.6;
    font-size: 20px;
    font-weight: 300;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    background-color: #fff;
}

.navbar .logo {
    font-size: 26px;
    font-weight: bold;
    color: #4a6cb3;
}

.navbar .logo span{
    color: #70bbea;
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #4a6cb3;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: #22428a;
}

/* Hero Image */
.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Main Content */
.content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: justify;
}

.content h1 {
    font-size: 40px;
    color: #6d95ea;
    margin-bottom: 20px;
    font-weight: bold;
}

.content h1.big {
    color: #5589d2;
    margin: 64px auto;
    text-align: center;
}

.content .p-contact-link {
    text-align: center;
    margin-top: -60px;
}

.content hr {
    margin: 60px 0;
    border-color: #ffffff;
}

.content .intro {
    font-size: 20px;
    margin-bottom: 20px;
}

.content p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service img {
    width: 100%;
    border-radius: 15px;
}

.service button {
    margin-top: 15px;
    background-color: #c6d9f1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service button:hover {
    background-color: #a4c3e3;
}

.service p {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* Values */
.values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0 40px;
    padding: 0 20px;
}

.value {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value img {
    width: 40px;
    margin-bottom: 8px;
}

.value span {
    font-size: 13px;
    color: #4a6cb3;
    font-weight: 500;
    margin-top: 4px;
}

/* Final Image */
.final-image {
    margin-top: 50px;
}

.final-image img {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 11px;
    color: #bbb;
}

/* === CONTACT SECTION === */

.contact-section {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin: 4rem auto;
    padding: 2rem 1rem;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    color: #6D91D9;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6D91D9;
    margin: 0.5rem 0;
}

.contact-info .note {
    margin-bottom: 50px;
}

.contact-link {
    color: #9BB7EB;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.note {
    margin-top: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #6D91D9;
    margin-top: 1rem;
}

.required {
    font-weight: normal;
    color: #9BB7EB;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.submit-button {
    background-color: #9BB7EB;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    align-self: start;
}

.submit-button:hover {
    background-color: #6D91D9;
}

/* Responsive mobile adjustments */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        gap: 2rem;
    }

    .submit-button {
        width: 100%;
        text-align: center;
    }
}

/* === KAMPEN SECTION === */


.kampen-section h1 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.kampen-list {
    list-style: disc inside;
    padding-left: 1rem;
}

.kampen-list li {
    margin-bottom: 1rem;
}

.kampen-list li:marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: auto !important;
}

.contact-link-text:hover {
    text-decoration: underline;
}

.begeleiders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.begeleider {
    text-align: center;
}

.begeleider img {
    width: 13rem;
    height: 13rem;
    object-fit: cover;
    border-radius: 5%;
    background-color: #F4E1DC;
    padding: 0.1rem;
}

.name-button {
    margin-top: 0.5rem;
    background-color: #9BB7EB;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
    .begeleiders-grid {
        grid-template-columns: 1fr 1fr;
    }
}

