/* Algemene Layout */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    width: 100%;
}

/* Content pagina's */
main.content-page {
    padding: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Typografie */

/* Titel (h1) */
h1 {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 500;
    color: var(--color-secondary);
    line-height: 1.2;
}

/* Subtitel (h2) */
h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 400;
    color: var(--color-secondary);
    text-align: left;
    line-height: 1.3;
}

/* Koptekst (h3) */
h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 500;
    color: var(--color-secondary);
    text-align: left;
    line-height: 1.4;
}

/* Paragraaf (p) */
p {
    font-family: var(--font-body);
    font-weight: 200;
    color: var(--color-secondary);
    text-align: left;
    max-width: 42rem;
    font-size: var(--font-size-base);
}

/* Kleine tekst */
.text-small,
p.text-small {
    font-size: var(--font-size-small);
    color: var(--color-gray-500);
}

/* Vetgedrukte tekst */
strong {
    font-weight: 600;
    color: var(--color-secondary);
}

/* Tekstgroottes */
.text-small {
    font-size: var(--font-size-small);
}

.text-large {
    font-size: var(--font-size-large);
}

.text-4xl {
    font-size: var(--font-size-4xl);
}

/* Maximale breedtes */
.max-width-3xl {
    max-width: 48rem;
}

/* Lijst */
ul {
    list-style: disc;
    padding-left: 1.5rem;
    max-width: 42rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Lijst items */
li {
    font-weight: 300;
    color: var(--color-secondary);
}

/* Knoppen */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0;
    font-size: var(--font-size-small);
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    outline: none;

    height: 2.25rem;
    padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
    .button {
        width: fit-content;
    }
}

/* Knop varianten */
.button-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.button-primary:hover {
    background-color: rgba(140, 209, 203, 0.6);
}

.button-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.button-outline:hover {
    background-color: rgba(140, 209, 203, 0.2);
}

.button-secondary {
    background-color: var(--color-secondary);
    color: white;
}

.button-secondary:hover {
    background-color: rgba(42, 56, 78, 0.6);
}

/* Knop Groottes */
.button-large {
    height: 3rem;
    font-size: var(--font-size-base);
    padding: 0 1.5rem;
}

.button-xl {
    height: 4rem;
    font-size: var(--font-size-base);
    padding: 0 2.5rem;
}

/* Knop iconen */
.button img {
    flex-shrink: 0;
}

.button-icon-medium {
    width: 1.5rem;
    height: 1.5rem;
}

/* Icoon filters voor donkere achtergronden */
.button-secondary .button-icon-medium,
.button-secondary-darker .button-icon-medium {
    filter: brightness(0) invert(1);
}

/* Sectie */
section {
    display: flex;
    flex-direction: column;
    height: fit-content;
    z-index: 1;
    position: relative;
}

/* Sectie wrapper */
.section-wrapper {
    z-index: 1;
    flex: 1;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    max-width: 80rem;
}

@media (min-width: 768px) {
    .section-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Volle breedte wrapper */
.section-wrapper.full-width {
    max-width: 100%;
}

/* Hulpklassen */
.padding-top-32 {
    padding-top: 8rem;
}

.padding-y-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.justify-end {
    justify-content: flex-end;
}

.bg-accent {
    background-color: var(--color-accent);
}

.text-secondary {
    color: var(--color-secondary);
}

.margin-b-4 {
    margin-bottom: 1rem;
}

.margin-b-16 {
    margin-bottom: 4rem;
}