:root {
    --brand-green: #0d8a31;
    --text-color: #333333;
    --bg-color: #ffffff;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Voorkomt ongewenst scrollen */
}

/* Bovenste gedeelte van het scherm (past zich flexibel aan de footer aan) */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    box-sizing: border-box;
}

.main-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* Button styling */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    border: 1px solid var(--text-color);
    border-radius: 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.button .arrow {
    margin-left: 0.5rem;
    font-size: 1.2em;
}

/* Footer & Groene balk */
.footer {
    position: relative;
    width: 100%;
    margin-top: auto;
}

.copyright {
    position: absolute;
    left: 2rem;
    bottom: calc(100% + 0.5rem);
    font-size: 0.65rem;
    color: #666;
    letter-spacing: 0.02em;
    z-index: 10;
}

/* Logo aansluiting */
.wordmark-container {
    width: 100%;
    display: block;
    line-height: 0;
}

.wordmark-container svg {
    display: block;
    width: 100%;
    height: auto;
    fill: var(--brand-green);
    transform: translateY(2px); /* Duwt logo exact op de groene lijn */
}

/* Desktop & Tablet: Groene onderbalk 1/3 kleiner (22vh) */
.green-footer-bar {
    width: 100%;
    height: 22vh;
    background-color: var(--brand-green);
}

/* Mobile: behoudt de oorspronkelijke verhouding van 33vh */
@media (max-width: 768px) {
    .main-text {
        font-size: 0.95rem;
    }
    .copyright {
        left: 1rem;
    }
    .green-footer-bar {
        height: 33vh;
    }
}
