/* ==========================================
   HERO HOME (DASHBOARD STIJL .eu + MARQUEE)
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background: var(--klassiek-groen);
    color: var(--white);
    padding: 1.5rem 5% 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.subtitle {
    color: var(--logo-licht);
    font-weight: 600;
    text-transform: none;
    display: block;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Scrollende Marquee - strip tussen nav-bar en hero */
.hero-marquee {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    margin-top: var(--navbar-height);
    background: #edfbd2;
    border-bottom: 1px solid rgba(72, 145, 0, 0.1);
    display: flex;
    align-items: center;
    height: 3rem;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    line-height: 1;
}

.marquee-track span:not(.marquee-dot) {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    color: var(--logo-donker);
    opacity: 0.9;
    line-height: 1;
}

.marquee-dot {
    width: 3px;
    height: 3px;
    background-color: var(--logo-donker);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   DASHBOARD & SOCIAL FEED (HOME)
   ========================================== */
.hero-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
    margin-top: 0;
}

.hero-copy {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 1.1rem 1.2rem;
    background: rgba(16, 43, 11, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(8px);

    /* Titel links, status-pill rechts, naast elkaar */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-copy-title {
    flex: 1 1 auto;
    min-width: 0;
}

.hero-copy-title h1 {
    margin-bottom: 0;
}

.hero-intro {
    margin-bottom: 1rem;
    font-size: 1rem;
    max-width: 62ch;
}

.status-window {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

.status-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-copy {
    display: grid;
    gap: 0.1rem;
}

.status-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    opacity: 0.9;
}

.status-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.status-compact {
    margin-left: auto;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.2);
}

.status-compact .status-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

/* Status-pill rechts in de bovenste hero-tegel */
.hero-copy .status-window {
    margin: 0;
    flex-shrink: 0;
}

.status-hours {
    font-size: 0.68rem;
    opacity: 0.9;
    margin-left: 0.35rem;
    padding-left: 0.6rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.status-window.is-open .status-dot {
    background: #97d700;
    box-shadow: 0 0 0 5px rgba(151, 215, 0, 0.2);
}

.status-window.is-closed .status-dot {
    background: #f06c5b;
    box-shadow: 0 0 0 5px rgba(240, 108, 91, 0.2);
}

.button-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-feed-container .button-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
}

/* De knoppen-styling */
.btn-primary, .btn-secondary {
    display: block;
    background-color: #b9e87b !important;
    color: #35513a !important;
    border: 1px solid #a6d96b !important;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: #c9ef94 !important;
    color: #2b4a32 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

/* Het Social Feed Vak */
.news-feed-container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparant wit */
    backdrop-filter: blur(15px); /* Het 'frosted glass' effect */
    border-radius: 30px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-header p {
    font-size: 1rem;
    opacity: 0.9;
}

/* De Social Grid Voorbeeld */
.social-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0.4rem 0;
}

.img-box {
    aspect-ratio: 1/1; /* Altijd vierkant */
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: flex-end;
    min-height: 250px;
}

.img-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 26, 8, 0.08) 0%, rgba(10, 26, 8, 0.85) 100%);
}

.img-box-copy,
.img-box-tag {
    position: relative;
    z-index: 1;
}

.img-box-copy {
    padding: 1.1rem;
}

.img-box-copy h2 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
}

.img-box-copy p {
    font-size: 0.7rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.img-box-tag {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.img-box-link,
.img-box-social-links a {
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
}

.img-box-social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.img-box-news {
    background: url('../images/community.jpg') center/cover no-repeat;
}

.img-box-event {
    background: url('../images/focus-op-detail.jpg') center/cover no-repeat;
}

.img-box-social {
    background: url('../images/zomerse-pracht.jpg') center/cover no-repeat;
}

/* ==========================================
   TEKST CONTAINER & CONTENT PAGINA'S
   ========================================== */
.container { width: 90%; max-width: 900px; padding: 4rem 0; }
.container h2 { color: var(--logo-donker); font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; }
.container h1 { color: var(--logo-donker); font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; }
.container a { color: var(--logo-donker); }

.events-page,
.contact-page {
    width: 100%;
    max-width: 1200px;
}

.events-subtitle {
    margin-bottom: 1rem;
}

.news-page {
    width: 100%;
    max-width: 1200px;
}

.news-subtitle {
    margin-bottom: 1rem;
}

.news-hero-copy {
    max-width: 780px;
    margin-bottom: 2.25rem;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    grid-template-areas: "featured archive";
    gap: 1.25rem;
    align-items: start;
}

.news-featured {
    grid-area: featured;
}

.news-archive {
    grid-area: archive;
}

.news-archive,
.news-featured {
    border-radius: 24px;
    background-color: var(--card-bg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    padding: 1.25rem;
}

.news-archive-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.news-archive-list a {
    display: block;
    text-decoration: none;
    font-weight: 700;
    color: var(--logo-donker);
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    background-color: rgba(151, 215, 0, 0.12);
}

.news-archive-list a:hover {
    background-color: rgba(151, 215, 0, 0.25);
}

.news-featured-meta {
    color: #5f7a38;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.news-featured-link {
    display: block;
    margin-top: 1rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 22px;
    overflow: hidden;
}

.news-featured-link img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.news-featured-link:hover img {
    transform: scale(1.02);
}

.events-hero-copy {
    max-width: 760px;
    margin-bottom: 3rem;
}

.events-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    grid-template-areas: "featured archive";
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.events-featured {
    grid-area: featured;
}

.events-archive {
    grid-area: archive;
}

.events-featured-meta {
    color: #5f7a38;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.event-calendar-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.calendar-item {
    padding: 1.25rem;
    border-radius: 16px;
    background-color: var(--white);
    border: 1px solid rgba(72, 145, 0, 0.1);
}

.calendar-item h3 {
    color: var(--logo-donker);
    margin-bottom: 0.4rem;
}

.calendar-date,
.event-story-meta {
    color: #5f7a38;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.events-archive-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.events-archive-list a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    background-color: rgba(151, 215, 0, 0.12);
    transition: background-color 0.2s ease;
}

.events-archive-list a:hover {
    background-color: rgba(151, 215, 0, 0.25);
}

.archive-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.archive-title {
    font-weight: 700;
    color: var(--logo-donker);
}

.events-story-list {
    display: grid;
    gap: 1.75rem;
}

.event-story {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    padding: 1.25rem;
    border-radius: 28px;
    background-color: var(--card-bg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.event-story-media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    border-radius: 20px;
}

.event-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-story-copy h2 {
    margin: 0.35rem 0 0.8rem;
}

.contact-page {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    align-items: start;
}

.contact-copy {
    padding: 1.75rem;
    border-radius: 24px;
    background-color: var(--card-bg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.contact-details {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.map-frame {
    min-height: 460px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
}

.gallery-page {
    width: 100%;
    max-width: 1200px;
}

.gallery-copy {
    max-width: 760px;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background-color: var(--card-bg);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 0.85rem 1rem;
    color: var(--logo-donker);
    font-weight: 700;
    font-size: 0.9rem;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-large img {
    height: 360px;
}

.volunteers-page {
    width: 100%;
    max-width: 1200px;
}

.volunteers-subtitle {
    margin-bottom: 1rem;
}

.volunteers-hero-copy {
    max-width: 800px;
    margin-bottom: 2.25rem;
}

.volunteer-list {
    display: grid;
    gap: 0.7rem;
    padding-left: 1.2rem;
}

.volunteer-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 10px;
    margin-bottom: 1.75rem;
}

.volunteer-photo {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--card-bg);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.volunteer-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.volunteer-photo figcaption {
    padding: 0.8rem 1rem;
    color: var(--logo-donker);
    font-weight: 700;
    font-size: 0.9rem;
}

.volunteer-contact {
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(72, 145, 0, 0.18);
    background: linear-gradient(180deg, rgba(223, 244, 182, 0.42) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.volunteer-contact h2 {
    margin-bottom: 0.6rem;
}

/* ==========================================
   TUIN PAGINA
   ========================================== */
.tuin-page {
    width: 100%;
    max-width: 1200px;
}

.tuin-subtitle {
    margin-bottom: 1rem;
}

.tuin-hero-copy {
    max-width: 800px;
    margin-bottom: 2.25rem;
}

.tuin-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(151, 215, 0, 0.2) 0%, rgba(151, 215, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tuin-card-icon i {
    font-size: 1.25rem;
    color: var(--logo-donker);
}

.tuin-card-seizoen {
    color: #5f7a38;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.bloemen-lijst {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bloemen-lijst li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(72, 145, 0, 0.1);
    font-size: 0.95rem;
}

.bloemen-lijst li:last-child {
    border-bottom: none;
}

.seizoen-tips {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0;
}

.seizoen-tips li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.coming-soon {
    display: inline-block;
    background-color: rgba(151, 215, 0, 0.15);
    color: var(--logo-donker);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Plattegrond Sectie */
.tuin-layout-sectie {
    margin-bottom: 2.5rem;
}

.tuin-layout-sectie h2 {
    color: var(--logo-donker);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.tuin-layout-sectie > p {
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.tuin-plattegrond-figuur {
    margin: 0 0 1.5rem 0;
    border-radius: 28px;
    overflow: hidden;
    background-color: var(--card-bg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.tuin-plattegrond-img {
    width: 100%;
    height: auto;
    display: block;
}

.tuin-plattegrond-figuur figcaption {
    padding: 1rem;
    text-align: center;
    color: var(--logo-donker);
    font-size: 0.9rem;
    font-weight: 600;
    background-color: rgba(151, 215, 0, 0.08);
}

.tuin-zones-lijst {
    background: linear-gradient(180deg, rgba(223, 244, 182, 0.35) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(72, 145, 0, 0.1);
    border-radius: 24px;
    padding: 1.5rem;
}

.tuin-zones-lijst h3 {
    color: var(--logo-donker);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

/* Insecten Sectie */
.tuin-insecten-sectie {
    margin-bottom: 2rem;
}

.tuin-insecten-sectie h2 {
    color: var(--logo-donker);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.tuin-insecten-sectie > p {
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.insecten-placeholder {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.insecten-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(151, 215, 0, 0.2) 0%, rgba(151, 215, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.insecten-icon i {
    font-size: 1.75rem;
    color: var(--logo-donker);
}

.insecten-placeholder p {
    margin-bottom: 0.5rem;
}

/* HOME - WELKOM SECTIE */
.home-intro {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.home-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.home-intro > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Mobiele aanpassing voor het dashboard */
@media (max-width: 900px) {
    .hero-dashboard {
        grid-template-columns: 1fr; /* Alles onder elkaar */
        gap: 2rem;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 1rem;
    }

    .hero-copy {
        max-width: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-copy-title h1 {
        margin-bottom: 0.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .social-grid-preview,
    .news-layout,
    .events-layout,
    .event-story,
    .contact-page,
    .gallery-grid,
    .volunteer-gallery {
        grid-template-columns: 1fr;
    }

    .news-feed-container .button-column {
        grid-template-columns: 1fr;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 320px;
    }

    .news-layout {
        grid-template-areas:
            "featured"
            "archive";
    }
}
