.section__hero {
	width: 100%;
    position: relative;
}

.inner__hero {
	max-width: 1600px;
	margin: 0 auto;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    padding: 0 30px;
}

.title__hero {
	font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 0;
    line-height: 50px;
}

.green-word__hero {
    color: #3A528B;
    font-weight: bold;
}

.image__hero {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 500px;
}

.sticky-parts {
    position: relative;
    z-index: 20;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 16px;
}

.sticky-parts__inner {
    background: #ffffff;
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Bovenste witte blok */
.sticky-parts__intro {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 48px;
    padding: 32px 48px 28px;
}

.sticky-parts__heading {
    padding-right: 48px;
    border-right: 1px solid #d9d9d9;
}

.sticky-parts__heading h2 {
    margin: 0;
    color: #111111;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 35px;
    letter-spacing: 0%;
}

.sticky-parts__heading strong {
    display: block;
    font-weight: 800;
}

.sticky-parts__content {
    max-width: 720px;
}

.sticky-parts__content p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    letter-spacing: 0%;
}

.golf__hero {
    position: absolute;
    top: 40%;
    width: 100%;
}

.golf__hero img { 
    height: 300px;
    width: 100%;
    opacity: 0.6;
}

/* Sticky navigatie — positie wordt beheerd via hero.js (JS sticky i.p.v. CSS vanwege Lenis) */
.sticky-parts__nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    background: #3A528B;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
}

.sticky-parts__nav.is-stuck {
    position: fixed;
    z-index: 99;
    border-radius: 0 0 18px 18px;
}


.sticky-parts__nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 72px;
    padding: 18px 24px;

    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;


    transition: background-color 0.2s ease;
}

.sticky-parts__nav-link:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
    background: rgba(255, 255, 255, 0.8);
}

.sticky-parts__nav-link:hover,
.sticky-parts__nav-link:focus-visible {
    background: #3A528B;
}

.sticky-parts__nav-icon {
    font-size: 15px;
    line-height: 1;
}

.post-summary p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 40px;
}

/* Mobiel */
@media (max-width: 900px) {
    .sticky-parts {
        padding: 0 30px;
    }

    .sticky-parts__intro {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 28px 24px;
    }

    .sticky-parts__heading {
        padding-right: 0;
        border-right: 0;
    }

    .sticky-parts__nav {
        grid-template-columns: 1fr;
        border-radius: 0 0 16px 16px;
    }

    .sticky-parts__nav.is-stuck {
        position: static;
    }

    .sticky-parts__nav-link {
        justify-content: space-between;
        min-height: 44px;
        padding: 8px 24px;
        font-size: 16px;
    }
	
	.sticky-parts__nav-icon {
		display: none;
	}

    .sticky-parts__nav-link:not(:last-child)::after {
        top: auto;
        right: 24px;
        bottom: 0;
        left: 24px;
        width: auto;
        height: 1px;
        background: rgba(255, 255, 255, 0.35);
    }

    .inner__hero {
        margin-bottom: 30px;
        padding: 0 30px;
    }

    .image__hero {
        object-position: unset;
        height: 300px;
    }
}


@media (max-width: 600px) { 
    .title__hero {
        font-size: 30px;
        line-height: 35px;
    }

    .sticky-parts__heading h2 {
        font-size: 26px;
    }

    .sticky-parts__content p {
        font-size: 17px;
        line-height: 30px;
    }
}

.sticky-parts__nav-link svg {
	transform: rotate(45deg);
	width: 20px;
    height: 20px;
	transition: 0.3s all;
}

.sticky-parts__nav-link:hover svg {
	transition: 0.3s all;
	transform: rotate(90deg);
}