/* Reset and base styles */
:root {
    /* Color Palette from Logo */
    --color-purple: #CB9EE1;
    --color-pink: #FFDBF5;
    --color-warm-pink: #EAA3B5;
    --color-blue: #C3E6ED;
    --color-peach: #FFDAC1;
    --color-mint: #E4FBCC;
    
    /* Additional Colors */
    --color-text: #333333;
    --color-white: #ffffff;
    --color-background: #f8f9fa;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Container */
    --container-max-width: 1200px;
    
    /* Typography */
    --font-family: 'Comfortaa', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color:  var(--color-text);
    background-color: var(--color-background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background:  var(--color-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-bar {
    background: var(--color-background);
    padding: 10px 0;
    text-align: center;
}

.contact-bar a {
    margin: 0 15px;
    color: #666;
    text-decoration: none;
}

header h1 {
    text-align: left;
    padding: 20px;
    color: var(--color-text);
    font-family: var(--font-family);
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(168, 230, 230, 0.9), rgba(168, 230, 179, 0.9)),
                url('images/in_de_praktijk_2_1300x867.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:  var(--color-white);
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-content {
    padding: 20px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: var(--font-family);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: var(--color-pink);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: var(--color-background);
}

/* About section */
.about {
    padding: 80px 0;
    background: white;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about h2 {
    font-family: var(--font-family);
}

.about img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.portret img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo {
    float: left;
    margin-right: 10px; /* Adjust the margin as needed */
    max-height: 70px; /* Set the maximum height of the logo */
    padding-left: 10%;
    margin-top: 8px;
    margin-bottom: 8px;
}

.services-list {
    list-style: none;
    margin-top: 20px;
}

.services-list li {
    margin: 10px 0;
}

/* Services section */
.services {
    padding: 80px 0;
    background: var(--color-background);
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-family);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
    color:  var(--color-purple);
    font-family: var(--font-family);
}

/* Contact section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-family);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--color-background);
    padding: 30px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--color-pink);
    font-family: var(--font-family);
}

.contact-info p {
    margin: 10px 0;
}

.opening-hours {
    margin-top: 20px;
}

.map iframe {
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

a {
    text-decoration: none;
    color: var(--color-text);
}

/* Footer */
footer {
    background: var(--color-blue);
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .about .container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 2em;
    }

    .contact-bar {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}
