
/* 
   Eva Wiewel - Style Sheet
   Kleurenpalet met Groen-accenten:
   #CE8157 (Terracotta)
   #F3E4D5 (Beige)
   #FBF6F1 (Achtergrond)
   #6E7145 (Olijfgroen - Nu prominenter)
   #75726D (Grijs)
   #586470 (Blauw-grijs)
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
    --color-brand: #CE8157;
    --color-bg-secondary: #F3E4D5;
    --color-bg-main: #FBF6F1;
    --color-bg-accent: #F8F1E9;
    --color-green: #6E7145; /* Olijfgroen accent */
    --color-text-light: #75726D;
    --color-text-dark: #586470;
    --max-width: 1000px;
    color-scheme: light;
}

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

html, body {
    min-height: 100%;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    font-size: 18px;
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(135deg, var(--color-bg-main) 0%, var(--color-bg-accent) 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Decoratief element voor diepte - nu met groene tint */
body::after {
    content: '';
    position: fixed;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(110, 113, 69, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--color-brand);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    border-bottom: 3px solid var(--color-green); /* Nu olijfgroen */
    display: inline-block;
    padding-bottom: 5px;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--color-green); /* Hover naar groen */
}

/* Layout Container */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Header & Navigatie */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom: 1px solid var(--color-bg-secondary);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.02);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--color-text-dark);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-green); /* Nu olijfgroen highlight */
    transition: width 0.3s ease;
}

nav ul li a:hover::after, 
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover, 
nav ul li a.active {
    color: var(--color-green); /* Nu olijfgroen highlight */
}

/* Content Secties */
main {
    padding: 6rem 0;
}

.hero {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 2.5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

/* Afbeeldingen */
.profile-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: 25px 25px 0px var(--color-bg-secondary);
    transition: transform 0.4s ease;
}

.profile-img:hover {
    transform: translate(-5px, -5px);
}

/* Lijsten - Pijltjes nu groen */
ul.feature-list {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

ul.feature-list li {
    padding-left: 2.2rem;
    position: relative;
    margin-bottom: 0.85rem;
}

ul.feature-list li::before {
    content: "→";
    color: var(--color-green); /* Veranderd van brand naar groen */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.service-block {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(243, 228, 213, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.service-block:hover {
    background: #fff;
    border-color: rgba(110, 113, 69, 0.3); /* Subtiele groene rand bij hover */
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    background-color: #fff;
    border-top: 1px solid var(--color-bg-secondary);
}

/* Responsive Design */
@media (max-width: 850px) {
    header .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        gap: 1.2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    main {
        padding: 4rem 0;
    }

    .profile-img {
        box-shadow: 15px 15px 0px var(--color-bg-secondary);
        margin-top: 2rem;
    }
    
    .service-block {
        padding: 2rem;
    }
}
