/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

 <link href="css/custom.css" rel="stylesheet">

*/

/* Standaard: toon logo-default, verberg logo-dark */

.img-fluid {
    border-radius: 10px;
}

/* Lees meer button styling */
.heading-text .btn-lees-me {
    margin-top: 18px;
}

.btn-lees-me {
    display: inline-block;
    padding: 0.65rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: #ff8339;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
    box-shadow: 0 6px 18px rgba(42,157,244,0.18);
    text-decoration: none;
}

.btn-lees-me:hover,
.btn-lees-me:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(42,157,244,0.22);
    outline: none;
}

.btn-lees-me:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .btn-lees-me {
        display: block;
        width: 100%;
        text-align: center;
    }
}

