/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
    --primary: #4CC9F0;       /* Velox Lichtblauw */
    --dark: #001f3f;          /* Velox Donkerblauw */
    --white: #ffffff;
    --card-radius: 24px;      /* Moderne ronde hoeken */
}

body, html {
    margin: 0; padding: 0;
    font-family: 'Roboto', sans-serif;
    height: 100%;
}

body {
    /* DE ORIGINELE BLAUWE ACHTERGROND */
    background: url('home.png') no-repeat center center fixed;
    background-size: cover;
    background-color: #4CC9F0;
    color: var(--dark);
}

/* HEADER */
.header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; width: 100%; box-sizing: border-box;
}
.header-logo { height: 60px; }
.nav-link { 
    text-decoration: none; color: var(--dark); font-weight: 700; margin-left: 20px; 
    transition: color 0.2s;
    background: rgba(255,255,255,0.8); /* Wit vlakje achter menu voor leesbaarheid */
    padding: 8px 16px; border-radius: 20px;
}
.nav-link:hover { background: white; color: var(--primary); }

/* BENTO GRID */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* KAARTEN STIJL */
.card {
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex; flex-direction: column;
    position: relative;
    min-height: 250px;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.card.featured { grid-column: span 2; background: var(--dark); color: white; }
@media (max-width: 768px) { .card.featured { grid-column: span 1; } }

.card-image { height: 60%; width: 100%; background-size: cover; background-position: center; background-color: #ddd; }
.card-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }

.meta-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.tag { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); font-weight: 900; }
.date-label { font-size: 12px; opacity: 0.6; font-weight: 500; }

.card h2 { margin: 0 0 10px 0; font-size: 24px; }
.card p { margin: 0; opacity: 0.7; line-height: 1.5; font-size: 14px; }

/* PLAY BUTTON */
.play-icon {
    position: absolute; top: 20px; right: 20px;
    background: white; color: var(--dark);
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* VIDEO PAGINA LAYOUT */
.video-page { max-width: 1000px; margin: 40px auto; padding: 20px; }
.video-wrapper {
    width: 100%; aspect-ratio: 16 / 9;
    background: black; border-radius: var(--card-radius);
    overflow: hidden; margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.video-text { background: white; padding: 40px; border-radius: var(--card-radius); line-height: 1.8; }

/* PERSBERICHT STIJL */
.white-frame {
    background-color: white; width: 90%; max-width: 800px;
    padding: 40px; margin: 40px auto; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); line-height: 1.8; color: #333; box-sizing: border-box;
}
.download-list { display: flex; flex-direction: column; gap: 10px; margin: 30px 0; background-color: #f9f9f9; padding: 20px; border-radius: 10px; }
.download-link { display: flex; align-items: center; text-decoration: none; color: var(--dark); padding: 10px; border: 1px solid #eee; background: white; border-radius: 5px; }
.download-link:hover { background-color: #eef7ff; border-color: var(--primary); }
.download-link i { font-size: 20px; margin-right: 15px; width: 25px; text-align: center; color: var(--primary); }

/* CONTACT FORMULIER */
.contact-section { max-width: 600px; margin: 40px auto; padding: 0 20px; }
.contact-card { background: white; padding: 30px; border-radius: var(--card-radius); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 14px; color: var(--dark); }
.form-input, .form-textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 8px; font-family: 'Roboto', sans-serif; font-size: 16px; box-sizing: border-box; }
.form-input:focus, .form-textarea:focus { border-color: var(--primary); outline: none; }
.form-textarea { resize: vertical; min-height: 120px; }
.submit-btn { background-color: var(--dark); color: white; border: none; padding: 15px 30px; border-radius: 50px; font-size: 16px; font-weight: bold; cursor: pointer; width: 100%; }
.submit-btn:hover { opacity: 0.9; }

/* FOOTER */
.footer { text-align: center; padding: 50px 20px; margin-top: auto; }
.social-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
.social-icon { background: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark); text-decoration: none; transition: 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.social-icon:hover { background: var(--dark); color: white; }
.btn { background-color: var(--dark); color: white; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 14px; display: inline-block; }