/* =================================================
   HERO MOBILE – DE CAMPERMAN
   ================================================= */

.dc-hero-mobile {
    display: block  !important;
    position: relative;
    min-height: 420px;
    height: 60vh;
    max-height: 520px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom:60px;
}

/* vanaf tablet / desktop verbergen */

@media (min-width: 768px) {
    .dc-hero-mobile {
        display: none  !important;
    }
}

/* -------------------------------------------------
   SLIDES
------------------------------------------------- */

.dc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}

.dc-slide.active {
    opacity: 1;
}


/* -------------------------------------------------
   BACKGROUND IMAGE
------------------------------------------------- */

.dc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.dc-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(69, 80, 59, 0.75);
}


/* -------------------------------------------------
   CONTENT BLOK
------------------------------------------------- */

.dc-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

    color: #E7DFCA;
    text-align: center;

    width: 85%;
    max-width: 420px;
}


/* -------------------------------------------------
   TITEL
------------------------------------------------- */

.dc-hero-content h1 {
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 1.2;
    color: #E7DFCA;
}

.dc-hero-sub {
    font-weight:bold;
}

/* -------------------------------------------------
   BULLETS
------------------------------------------------- */

.dc-hero-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 10px 0;
}

.dc-hero-content li {
    margin: 6px 0;
    font-size: 18px;
    color: #E7DFCA;
}


/* -------------------------------------------------
   BUTTON
------------------------------------------------- */

.dc-hero-btn {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #45503B;
    color: #E7DFCA;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.dc-hero-btn:hover {
    background: #394332;
}

/* -------------------------------------------------
   PROCESSTAPPEN CARD
------------------------------------------------- */

.dc-process-list {
    list-style: none;

    padding: 22px 24px;

    margin: -35px 16px 0 16px;   /* zelfde zijkanten als hero */

    background: #E7DFCA;
    border-radius: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.18);

    counter-reset: step;

    position: relative;
    z-index: 3;
}

/* kopregels */

.dc-process-title {
    padding-left: 0 !important;
    margin: 8px 0 6px 0;

    font-size: 18px;
    font-weight: 600;
    color: #45503B;
}

.dc-process-title::before {
    display: none;
}

/* normale stappen */

.dc-process-list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #45503B;
}

/* nummerbolletjes */

.dc-process-list li:not(.dc-process-title)::before {
    content: counter(step);
    counter-increment: step;

    position: absolute;
    left: 0;
    top: 0;

    width: 26px;
    height: 26px;

    border-radius: 50%;
    background: #45503B;
    color: #E7DFCA;

    font-size: 14px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
}