/* Dynamische, cinematische styling voor Mediaflow */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(-45deg, #0b0f12, #1a232a, #070a0c, #111b21);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 650px;
    padding: 30px;
    z-index: 1;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #00a884; 
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 168, 132, 0.2);
}

p {
    font-size: 1.25rem;
    color: #cfd8dc;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    background-color: #00a884;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 132, 0.3);
}

.btn:hover {
    background-color: #008f72;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 132, 0.5);
}

/* Social media balk vastgezet onderaan */
.social-links {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 25px;
    z-index: 2;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(22, 31, 38, 0.8); 
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Zorgt dat de logo's perfect passen en standaard strak wit zijn */
.social-icon svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

/* Effect bij hover */
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Unieke app-kleuren bij hover */
.social-icon.linkedin:hover { background-color: #0077b5; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.facebook:hover { background-color: #1877f2; }
.social-icon.tiktok:hover { background-color: #000000; border-color: #ee1d52; }
.social-icon.youtube:hover { background-color: #ff0000; }
