/* Opmaak whitefrost.nl. Overgenomen uit de oude statische site; de footer is
   niet langer 'fixed' (dat viel over de lange juridische teksten heen) en er
   zijn stijlen bij voor de gedeelde kop/voet en de juridische pagina's. */

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

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-image: url('/img/background.jpg');
    background-size: contain;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Breedtebegrenzing, gedeeld met de andere sites */
.binnen {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Kop */
.site-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 0;
}

.site-header .merk {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

/* Hero-sectie */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.hero p {
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-align: center;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Content secties */
.content-section {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    margin-bottom: 0.5rem;
}

/* Juridische pagina's: leesbare lap tekst op een rustige achtergrond */
.juridisch {
    background: #fff;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    line-height: 1.5;
}

.juridisch h1,
.juridisch h2,
.juridisch h3 {
    margin: 1.2rem 0 0.4rem;
}

.juridisch h1:first-child {
    margin-top: 0;
}

.juridisch p,
.juridisch ul,
.juridisch ol {
    margin-bottom: 0.8rem;
}

.juridisch ul,
.juridisch ol {
    padding-left: 1.5rem;
}

.juridisch table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0.8rem;
}

.juridisch td,
.juridisch th {
    border: 1px solid #ddd;
    padding: 0.4rem;
    vertical-align: top;
}

/* Voet */
.site-footer {
    flex-shrink: 0;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
}

.site-footer p {
    margin: 0.2rem 0;
}

.site-footer a {
    color: #333;
}

.juridisch-links a {
    margin: 0 0.4rem;
}

/* Responsieve styling */
@media (max-width: 768px) {
    .hero {
        padding: 2rem;
    }
    .content-section,
    .juridisch {
        padding: 1.5rem;
        margin: 1rem auto;
    }
}
