/* Algemene instellingen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

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

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 2rem 0;
}

/* Header */
header {
    background: linear-gradient(135deg, #52198f, #2575fc);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.logo {
    width: 200px;
}

section h2 {
    text-align: center;
    color: #2575fc;
    margin-bottom: 2rem;
}

section p {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
}

/* Links/buttons */
.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.button {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    color: #fff;
}

.whatsapp {
    background-color: #25D366;
}

.eventbrite {
    background-color: #FF5700;
}

.button:hover {
    opacity: 0.8;
}

/* Image placeholder */
.image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}
