* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    color: #2e8b57;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background-color: #22472B;
    background-image: 
        linear-gradient(rgba(34, 71, 43, 0.85), rgba(34, 71, 43, 0.85)),
        url("../img/stars.gif");
    background-size: 200px;
    background-repeat: repeat;
    background-position: center;

    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.bewonersportaal {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid white;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.bewonersportaal:hover {
    background-color: white;
    color: #22472B;
}

.hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}

.content-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.full-width-section {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.contact-item p {
    margin: 0;
}

.beheerder-section {
    background-color: #f1f1f1;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.beheerder-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.beheerder-info {
    flex: 1;
    padding: 10px;
}

.beheerder-info p {
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.beheerder-info p:first-child {
    margin-top: 0;
}

.beheerder-logo {
    flex: 1;
}

.beheerder-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Datum prominenter maken */
.wedding-date {
    font-weight: bold;
    font-size: 1.05rem;
    color: #222;
    margin-top: 0.05rem;
}

footer {
    background-color: #22472B;
    background-image: 
        linear-gradient(rgba(20, 40, 25, 0.89), rgba(20, 40, 25, 0.89)),
        url("../img/grass.gif");
    background-size: 338px;
    background-repeat: repeat;
    background-position: bottom;

    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
    }

    .beheerder-content {
        flex-direction: column;
    }

    .beheerder-logo {
        margin-top: 1.5rem;
        width: 100%;
    }

    .beheerder-logo img {
        width: 100%;
        height: auto;
    }
}
