:root {
    /* Color Palette - Premium Beige & Natural Tones */
    --clr-bg-light: #fdfbf7;
    --clr-bg-tan: #f4eee2;
    --clr-text-main: #3d3b38;
    --clr-text-light: #6b665e;
    --clr-accent: #a3b18a;
    /* Soft sage green */
    --clr-accent-hover: #829562;
    --clr-border: #e0d8c9;
    --clr-white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    --radius-md: 12px;
    --radius-lg: 24px;

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--clr-text-main);
}

p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
    font-size: 1.125rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--clr-accent);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: var(--spacing-xl) 0;
}

.light-bg {
    background-color: var(--clr-bg-light);
}

.dark-bg {
    background-color: var(--clr-bg-tan);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--clr-accent);
    color: var(--clr-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(163, 177, 138, 0.4);
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 177, 138, 0.6);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--clr-bg-tan);
    /* Subtle beige gradient, a placeholder until we have a farm image */
    background: linear-gradient(135deg, var(--clr-bg-light) 0%, var(--clr-bg-tan) 100%);
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-container {
    margin-bottom: 2rem;
    width: 250px;
    max-width: 80%;
}

.logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.05));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.05);
}

.hero h2 {
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--clr-accent-hover);
}

.hero .tagline {
    font-size: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--clr-text-main);
}

#logo-fallback {
    font-size: 4rem;
    color: var(--clr-text-main);
}

/* Visual Elements */
.image-placeholder {
    height: 400px;
    background-color: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, var(--clr-white) 0%, var(--clr-bg-tan) 100%);
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="%23a3b18a" fill-opacity="0.1" fill-rule="evenodd"><path d="M0 40L40 0H20L0 20M40 40V20L20 40"/></g></svg>');
    opacity: 0.5;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-glass);
    z-index: 2;
    max-width: 80%;
    transform: translateY(20px);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon-strawberry,
.icon-stork {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.stork-bg {
    background: linear-gradient(120deg, var(--clr-bg-tan) 0%, #e8e1d2 100%);
}

/* Openingstijden Grid */
.times-grid {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.time-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--clr-border);
    font-size: 1.15rem;
}

.time-row:last-child {
    border-bottom: none;
}

.time-row .day {
    font-weight: 600;
}

.time-row .hours {
    color: var(--clr-text-light);
}

.time-row.closed .hours {
    color: #e07a5f;
    font-style: italic;
}

.time-row.special .hours {
    font-weight: 600;
}

/* Today highlight */
.time-row.today-row {
    background-color: rgba(163, 177, 138, 0.15);
    border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-bottom-color: transparent;
}

.time-row.today-row .day::after {
    content: " (vandaag)";
    font-size: 0.85em;
    color: var(--clr-accent-hover);
    font-weight: normal;
    font-style: italic;
    margin-left: 6px;
}

/* Footer */
.footer {
    background-color: var(--clr-text-main);
    color: var(--clr-bg-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer h3 {
    color: var(--clr-bg-tan);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--clr-accent);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--clr-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 900px) {

    .two-col,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .two-col.reverse {
        /* On mobile, usually nice to have image first or standard order. We'll keep text first. */
        display: flex;
        flex-direction: column;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .times-grid {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 500px) {
    .hero {
        min-height: 80vh;
    }

    .time-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}