/* --- RESET & VARIABLES --- */
:root {
    --primary-color: #C07F58; /* Terracotta/Earth tone */
    --text-dark: #333333;
    --text-light: #777777;
    --bg-light: #F9F9F9;
    --bg-dark: #2C2C2C;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- UTILITIES --- */
.section-pad { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-small { font-size: 0.9rem; color: var(--text-light); margin-top: 10px; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* --- BUTTONS --- */
.btn-main {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-main:hover { background-color: #a66a46; }

/* --- NAVIGATION --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a:hover { color: var(--primary-color); }
.btn-nav {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
}

/* --- HERO SECTION --- */
.hero {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.2; }
.hero-text p { margin-bottom: 25px; color: var(--text-light); font-size: 1.1rem; }

.hero-image { flex: 1; }
.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
}

.gallery-grid img:hover { transform: scale(1.02); }

/* --- REVIEWS --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color); /* Het terracotta accent */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.review-author {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- RATES --- */
.rate-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

table { width: 100%; border-collapse: collapse; }
th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
th { color: var(--primary-color); }

/* --- CALENDAR --- */
.calendar-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}
.calendar-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    color: #888;
}

/* --- CONTACT --- */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}
.full-width { width: 100%; }

/* --- FOOTER --- */
footer {
    background: #222;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Hoogte van je navbar */
        left: -100%; /* Verberg het menu links buiten beeld */
        width: 100%;
        background: var(--white);
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0; /* Schuif menu in beeld */
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--text-dark);
        transition: 0.3s;
    }

    .hero-text h1 { font-size: 2.5rem; }
    .hero-content { flex-direction: column; text-align: center; }
}