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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
    padding-top: 0;
}

header {
    background: white;
    color: #333;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav h1 {
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid transparent;
}

nav a:hover {
    color: #3498db;
    border-bottom: 3px solid #3498db;
}

main {
    background: white;
    margin: 2rem auto;
    padding-top: 5rem;
    overflow: hidden;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 60vh;
}

h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

h3 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

div.hero,
.hero {
    background: url('images/banner.jpg') center/cover;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
}

.hero h2 {
    color: white;
    border: none;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

.hero-subtitle {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.9),
        0 0 12px rgba(0,0,0,0.6);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0 0 0;
    padding-bottom: 5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #40916c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(64, 145, 108, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-top: 0;
    color: #2d6a4f;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    background: #3498db;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

button:hover {
    background: #2980b9;
}

footer {
    background: white;
    color: #333;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.kiosk-image {
    float: none;
    display: block;
    margin: 2rem auto;
    margin-bottom: 0;
    max-width: 600px;
    width: 100%;
}

.image-caption {
    text-align: center;
    margin: 0.25rem 0 2.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    opacity: 0.85;
}

.about-text {
    flex: 1;
}

.about-image {
    width: 220px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

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

    .about-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 1.5rem auto;
    }
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem 2.5rem;
    border-radius: 10px;
    max-width: 520px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-left {
    margin-left: 0;
}

.contact-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 1.5rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 1.8rem 1fr;
    column-gap: 0.75rem;
    align-items: start;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-icon {
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
}

.contact-row a {
    color: #3498db;
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}
