/* ===== Basisstijlen ===== */
:root {
    --primary-color: #93C572;    /* Pistache */
    --secondary-color: #CCCCFF;  /* Lavender Blue */
    --light-color: #E2E1FC;      /* Light Lavender */
    --accent-color: #E2725B;     /* Terracotta */
    --text-color: #2C2C2C;       /* Donker voor leesbaarheid */
    --text-light: #3A5927;       /* Dark Pistache voor secundaire tekst */
    --background-color: #F9FAFB; /* UI Wit als achtergrond */
}

/* ===== Initieel =====
:root {
    --primary-color: #5C4033;   /* Donkerbruin */
    --secondary-color: #D4AF37; /* Goud */
    --light-color: #F5F5DC;     /* Beige */
    --accent-color: #E8B4B8;   /* Zacht roze */
    --text-color: #2C2C2C;      /* Donker voor leesbaarheid */
    --text-light: #7F8C8D;      /* Lichtgrijs voor secundaire tekst */
    --background-color: #FFFFFF; /* Wit als achtergrond */
        }
*/

/* ===== Alternatief ===== 
 :root {
            --primary-color: #2c3e50;   /* Cyan-Blue */
            --secondary-color: #f39c12; /* Leather-Brown */
            --light-color: #ecf0f1;     /* Light Cyan*/
        }
*/

/* #93C572 = Pistache */
/* #E6E6FA = Lavender */
/* #CCCCFF = Lavender Blue */
/* #E2E1FC = Light Lavender */
/* #E2725B = Terracotta */
/* #F9FAFB = UI White */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

/* ===== Header ===== */
header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-img {
    height: 60px; /* Pas de hoogte aan naar wens */
    width: auto; /* Zorgt voor behoud van aspectratio */
    max-width: 100%; /* Zorgt dat de afbeelding niet te breed wordt */
    object-fit: contain; /* Behoudt de verhoudingen */
}

.logo span {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* ===== Hero Sectie ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== Knoppen ===== */
.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--accent-color);
}

/* ===== Main Content ===== */
main {
    padding: 3rem 0;
}

section {
    margin-bottom: 3rem;
}

section h1, section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

/* ===== Grid en Cards ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card, .service-card, .contact-info, .contact-form, .opening-hours, .address-info, .map-container, .route-description {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.card:hover, .service-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s;
}

.card h3, .service-card h3, .content-block h3, .contact-info h3, .opening-hours h3, .address-info h3, .route-description h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Formulieren ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
}

/* ===== Footer ===== */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    margin: 1rem 0;
}

.social-links a {
    color: var(--text-light);
    margin: 0 0.5rem;
    font-size: 1.5rem;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Contact en Locatie ===== */
.contact-container, .location-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info p, .address-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i, .address-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.contact-info a, .address-info a {
    color: var(--accent-color);
}

.map-container {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-placeholder {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.directions-link {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.directions-link:hover {
    background-color: var(--accent-color);
}

.opening-hours table {
    width: 100%;
    border-collapse: collapse;
}

.opening-hours table td,
.opening-hours table th {
    padding: 0.5rem;
    border: 1px solid #ddd;
    text-align: left;
}

.opening-hours table th {
    background-color: var(--primary-color);
    color: #fff;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-container, .location-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }
}