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

body {
    background-color: #f4f4f4;
    color: #333;
    padding: 10px;
}

/* ✅ Hero Titel (los, zonder achtergrond) */
.producties-header {
    text-align: center;
    padding: 40px 20px 10px; /* Extra ruimte onder voor balans */
}

.producties-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ✅ Introductie Tekst (in witte achtergrond) */
.producties-intro {
    max-width: 900px;
    margin: 0 auto 30px; /* Strakke spacing onder de tekst */
    padding: 25px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.producties-intro p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* ✅ Container voor de producties */
.producties-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}

/* ✅ Producties grid */
.producties-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ✅ Productiekaart */
.productie-item {
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* ✅ Link styling */
.productie-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

/* ✅ Logo afbeelding */
.productie-logo {
    width: 100%;
    height: 75%;
    object-fit: contain;
    background-color: #f8f8f8;
    padding: 5px;
    border-radius: 5px 5px 0 0;
}

/* ✅ Productie info */
.productie-info {
    width: 100%;
    height: 25%;
    background: #fff;
    padding: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.productie-info h2 {
    font-size: 15px;
    color: #222;
    margin-bottom: 2px;
    transition: color 0.3s ease-in-out;
}

.productie-info .jaar {
    font-size: 12px;
    color: #777;
    font-weight: bold;
}

/* ✅ Hover effect */
.productie-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.productie-item:hover h2 {
    color: #d4af37;
}

/* ✅ Geen producties beschikbaar */
.geen-producties {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* ✅ Responsiviteit */
@media (max-width: 900px) {
    .producties-grid {
        justify-content: center;
    }

    .productie-item {
        width: 200px;
        height: 200px;
    }

    .productie-info h2 {
        font-size: 13px;
    }

    .productie-info .jaar {
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .producties-grid {
        justify-content: center;
    }

    .productie-item {
        width: 180px;
        height: 180px;
    }

    .productie-info h2 {
        font-size: 12px;
    }

    .productie-info .jaar {
        font-size: 10px;
    }
}
