/* Import fancy fonts */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;600&display=swap');

/* Algemene stijlen */
body {
    font-family: 'Work Sans', sans-serif;
    background-image: url("foto.jpg");
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e5c3ff;
}

/* Header afbeelding */
.header-image img {
    width: 100%;
    display: block;
}

/* Hoofdstructuur: Sidebar + Content */
.main-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}

/* Linker & rechter kolom */
.sidebar, .right-sidebar {
    width: 20%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(162, 85, 237, 0.5);
}

/* Tekst in zijbalken */
.sidebar h2, .right-sidebar h2 {
    font-size: 1.8rem;
    color: #d4aaff;
    text-shadow: 2px 2px rgba(129, 55, 255, 0.7);
}

.sidebar p, .right-sidebar p {
    font-size: 1rem;
    color: #e5c3ff;
}

/* Content (Berichten container) */
.content-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Berichten container */
.container {
    width: 100%;
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(162, 85, 237, 0.5);
    border-radius: 20px;
    text-align: center;
}

/* Berichtenbox */
#messages-container {
    padding: 20px;
    border-radius: 10px;
    min-height: 200px;
    color: #000;
}

/* Blogbericht */
.message {
    border: 2px solid #000;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    color: #000;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
}

/* Koptekst in berichten */
.message h3 {
    color: #000;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

/* Afbeeldingen in berichten */
.message img {
    max-width: 50%;
    border-radius: 10px;
    border: 2px solid #d4aaff;
}

/* Fancy knoppen */
button {
    padding: 10px 20px;
    border: none;
    background: #8137ff;
    color: white;
    font-size: 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    text-shadow: 1px 1px #5d267d;
}

button:hover {
    background: #5d267d;
    transform: scale(1.1);
}

/* Mobiele weergave */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }

    .sidebar, .right-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
}


