/* ----- Kinepraktijk Thalia - Huisstijl ----- */

/* ----- 1. Import Fonts & Variabelen ----- */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&family=Neuton:wght@700&display=swap');

:root {
    --kleur-olijf: #3b4114;
    --kleur-jade: #c3bd9f;
    --kleur-kastanje: #53170f;
    --kleur-wit: #FFFFFF;
    --kleur-lichtgrijs: #f8f8f8;
    --kleur-koraal: #a83031;
    --kleur-terracotta: #d34d2a;
    --kleur-abrikoos: #df7647;

    --font-titel: 'Neuton', serif;
    --font-tekst: 'Work Sans', sans-serif;
}

/* ----- 2. Algemene Stijlen ----- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-tekst);
    color: var(--kleur-olijf);
    line-height: 1.6;
    background-color: var(--kleur-wit);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h2-contact, h3 {
    font-family: var(--font-titel);
    font-weight: 700;
    margin-bottom: 20px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; }
h2-contact { font-size: 2.5rem; text-align: left; margin-bottom: 40px; }
p  { margin-bottom: 15px; }
img { max-width: 100%; }

/* ----- 3. Header & Navigatie ----- */
.main-header {
    background: var(--kleur-wit);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.main-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-header .logo img {
    height: 60px;
    margin-bottom: 5px;
}
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}
.main-nav li {
    margin: 0 15px;
}
.main-nav a {
    text-decoration: none;
    color: var(--kleur-olijf);
    font-weight: 700;
}

/* ----- 4. Algemene Sectie Stijlen ----- */
.section {
    padding: 80px 0;
}

/* Accentkleur voor specifieke secties (via ID) */
#hero,
#over,
#contact-title-section {
    background-color: var(--kleur-jade);
    text-align: center;
}

/* ----- 5. Pagina-specifieke Secties ----- */

/* Home: Specialisaties */
.specialisaties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.specialisatie-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.specialisatie-item img {
    height: 80px;
    margin-bottom: 20px;
}
.specialisatie-item h3 {
    font-family: var(--font-titel);
    font-size: 1.5rem;
    min-height: 3.5em;
    margin-bottom: 1rem;
}
.specialisatie-item--var-1 {
    color: var(--kleur-kastanje);
}
.specialisatie-item--var-2 {
    color: var(--kleur-olijf);
}

/* Home & Therapeuten: Over sectie */
#over {
    display: flex;
    align-items: center;
    gap: 50px;
}
#over .over-text { flex: 1; text-align: left; }
#over .over-image { flex: 1; text-align: center; }
#over .over-image img { max-width: 350px; border-radius: 10px; }

/* Behandelingen Pagina */
.behandeling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.behandeling-item {
    background-color: var(--kleur-lichtgrijs);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--kleur-olijf);
    text-align: left;
}
.behandeling-item h3 {
    margin-bottom: 10px;
}
.specialisatie-tag {
    font-size: 0.9rem;
    color: var(--kleur-kastanje);
    font-weight: 700;
    margin: 0;
}

/* Contact Pagina */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}
.contact-info h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
}
.contact-info p, .contact-info a {
    font-size: 1rem;
    line-height: 1.7;
    text-decoration: none;
    color: var(--kleur-olijf);
}
.contact-info a:hover {
    text-decoration: underline;
}
.opening-hours {
    list-style: none;
    padding: 0;
}
.contact-map iframe {
    border-radius: 8px;
}

/* ----- 6. Footer ----- */
.main-footer {
    background-color: var(--kleur-olijf);
    color: var(--kleur-wit);
    text-align: center;
    padding: 40px 20px;
}
.main-footer p {
    margin: 0;
}
.main-footer a {
    color: inherit;
    text-decoration: none;
}
.main-footer a:hover {
    text-decoration: underline;
}

.copyright-text {
    font-size: 0.8rem; /* Ongeveer helft van de normale tekstgrootte */
    margin-top: 10px; /* Voegt wat ruimte toe onder de contactgegevens */
}

/* ----- 7. Responsive Aanpassingen ----- */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }
    .main-nav li {
        margin: 10px 0;
    }
    .specialisaties-grid,
    .behandeling-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    #over {
        flex-direction: column;
    }
}