/* --------------------------------------------------------------
   STAPPENPLAN – Algemene styling
-------------------------------------------------------------- */

.stappenplan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.stappenplan-list li {
    margin-bottom: 0.6rem;
}

.stappenplan-list a {
    display: inline-block;
    color: #0055aa;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.stappenplan-list a:hover {
    color: #003f7d;
}

/* --------------------------------------------------------------
   HERO
-------------------------------------------------------------- */

.hero {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.55);
    padding: 1rem 1.4rem;
    border-radius: 6px;
    color: #fff;
    max-width: 80%;
}

.hero-text h1 {
    margin: 0 0 0.4rem 0;
    font-size: 1.8rem;
}

.hero-text p {
    margin: 0;
    font-size: 1rem;
}

/* --------------------------------------------------------------
   GRID (1-2)
-------------------------------------------------------------- */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* --------------------------------------------------------------
   ASIDE MENU (rechts)
-------------------------------------------------------------- */

.stappenplan-menu {
    position: sticky;
    top: 100px;
    background: #f7f7f7;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e3e3e3;
}

.stappenplan-menu h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
	color: var(--link);
}

.stappenplan-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stappenplan-menu li {
    margin-bottom: 0.7rem;
}

.stappenplan-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.stappenplan-menu a:hover {
    color: var(--primary);
}

/* --------------------------------------------------------------
   SECTIONS
-------------------------------------------------------------- */

section h2 {
    margin-top: 0;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

section p {
    line-height: 1.6;
}

/* --------------------------------------------------------------
   RESPONSIVE
-------------------------------------------------------------- */

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .stappenplan-menu {
        position: static;
        margin-top: 1rem;
    }

    .hero-image {
        height: 200px;
    }

    .hero-text {
        max-width: 100%;
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 0.8rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }
}
/* --------------------------------------------------------------
   STAPPENPLAN – Kaarten layout
-------------------------------------------------------------- */

.stappenplan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stappenplan-card {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stappenplan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stappenplan-card .card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.stappenplan-card h2 {
    font-size: 1.3rem;
    margin: 1rem 1rem 0.5rem 1rem;
}

.stappenplan-card ul {
    list-style: none;
    padding: 0 1rem 1rem 1rem;
    margin: 0;
}

.stappenplan-card li {
    margin-bottom: 0.5rem;
}

.stappenplan-card a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.stappenplan-card a:hover {
    color: var(--primary);
}
.stap {
color: var(--link);
font-size: 1rem;
  margin: 1rem 1rem -0.5rem 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
