/* dcn-bar.css - DCN Nijverdal Social Bar v2.0 */
/* Aanroepen met: <link rel="stylesheet" href="/css/dcn-bar.css"> */

/* Social media bar - DCN APP & YOUTUBE BAR */
.social-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #ffffff;
    border-radius: 8px;
    max-width: 880px;
    margin: 0 auto 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 20px;
}

.dcn-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #5b991e;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 6px;
    background: #f8faf6;
}

.dcn-app-item:hover {
    background: #5b991e;
    color: white;
    transform: translateY(-2px);
}

.dcn-app-item img {
    width: 30px;
    height: 30px;
}

.youtube-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FF0000;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 6px;
    background: #fff5f5;
}

.youtube-item:hover {
    background: #FF0000;
    color: white;
    transform: translateY(-2px);
}

.youtube-item img {
    width: 30px;
    height: 30px;
}

/* Responsive design voor social bar */
@media (max-width: 900px) {
    .social-bar {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .dcn-app-item, .youtube-item {
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .dcn-app-item, .youtube-item {
        font-size: 14px;
        padding: 6px 12px;
    }
}