/* Kleuren uit het stijlenblad */
:root {
    --natuurgroen: #717344;
    --aardebruin: #815e08;
    --zwart: #050e0d;
    --lichtgroen: #ebebe4; /* Basiskleur achtergrond */
    --lichtbruin: #ede7dc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto Condensed', sans-serif; /* Gebruikte font [cite: 37] */
    background-color: var(--lichtgroen);
    color: var(--zwart);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 600px;
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
}

.intro {
    font-size: 1.2rem;
    font-weight: 300; /* Light variant [cite: 40] */
    margin-bottom: 20px;
}

.cta-text {
    margin-bottom: 25px;
    font-weight: 400; /* Regular [cite: 54] */
}

.button {
    display: inline-block;
    background-color: var(--natuurgroen);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700; /* Bold  */
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

/* Responsiviteit voor mobiel */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    .logo {
        max-width: 180px;
    }
}