/* ===================== SECTION ANIMATION ===================== */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.section-animate.visible {
    opacity: 1;
    transform: none;
}
/* =====================================================
   CULTUURCRAAN - PIXEL PERFECT STYLES
   Design tokens extracted from Figma
   ===================================================== */

:root {
    /* Color Palette */
    --cc-primary:        #BF983C;
    --cc-primary-dark:   #B88D28;
    --cc-primary-light:  #e9b845;
    --cc-yellow:         #D9C26B;
    --cc-cream:          #F4EBE5;
    --cc-cream-light:    #FBF6E6;
    --cc-dark:           #40374A;
    --cc-dark-2:         #3A2A3A;
    --cc-text:           #2B2B2B;
    --cc-text-muted:     #6B6258;
    --cc-white:          #FFFFFF;
    --cc-border:         #E5DCC2;
    --cc-grey:           #d2d2d2;

    /* Stroom (category) accent colors */
    --c-muziek:      #BFB04F;
    --c-film:        #6B4C84;
    --c-dans:        #2B1F2B;
    --c-literatuur:  #8C5E84;
    --c-kunst:       #D9C26B;
    --c-theater:     #B7A04F;

    /* Typography */
    --ff-heading: 'Oswald', sans-serif;
    --ff-body:    'Inter', sans-serif;

    /* Radii */
    --r-sm:   6px;
    --r-md:   12px;
    --r-lg:   20px;
    --r-pill: 999px;

    /* Shadows */
    --sh-card: 0 6px 18px rgba(43, 31, 43, 0.08);
    --sh-soft: 0 2px 8px rgba(43, 31, 43, 0.06);
}

/* ===================== GLOBAL BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--cc-text);
    background: var(--cc-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cc-primary); }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--ff-heading);
    font-weight: 600;
    color: var(--cc-text);
    margin: 0;
}

/* ===================== REUSABLE ===================== */
.section-title {
    font-family: var(--ff-heading);
    font-weight: 500;
    font-size: clamp(28px, 4vw, 50px);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 56px;
    color: var(--cc-text);
}
.btn-cta,
.btn-primary-cc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--cc-primary);
    color: #fff !important;
    font-family: var(--ff-heading);
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    border: 1px solid var(--cc-white);
    border-radius: var(--r-pill);
    box-shadow: var(--sh-soft);
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
}
.btn-cta:hover,
.btn-primary-cc:hover {
    background: var(--cc-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(168,152,91,.35);
    color: #fff !important;
}
.btn-cta__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: auto;
    transition: transform .25s ease;
}
.btn-cta:hover .btn-cta__arrow { transform: translateX(3px); }

.text-yellow { color: var(--cc-yellow); }
.text-white  { color: #fff; }

/* ===================== TOP UTILITY BAR ===================== */
.top-bar {
    background: #AA9D57;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.top-bar__link {
    color: #fff;
    font-family: var(--ff-body);
    font-weight: 500;
    padding: 0 12px;
}
.top-bar__link img {
    display: inline-flex;
    height: 13px;
    margin-right: 5px;
}
.top-bar__link:hover { color: var(--cc-cream); }
.top-bar__divider { color: rgba(255,255,255,.5); }

/* ===================== HEADER ===================== */
.site-header {
    background: var(--cc-white);
    border-bottom: 1px solid var(--cc-white);
    position: relative;
    z-index: 10;
}
.site-header .navbar { padding: 14px 0; }
.site-header .nav-logo{
    position: absolute;
    width: 130px;
    height: auto;
    background: var(--cc-white);
    border-radius: 50%;
    padding: 5px;
    top: calc(-50% + 10px);
}
.site-header .nav-logo img {
    width: 100%;
    height: auto;
}

.site-header .nav-link {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 15px;
    color: var(--cc-text) !important;
    padding: 10px 18px !important;
    position: relative;
}
.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 18px; right: 18px; bottom: 4px;
    height: 2px;
    background: var(--cc-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--cc-primary) !important; }
.site-header .nav-link:hover::after,
.site-header .nav-link.active::after { transform: scaleX(1); }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 560px;
    background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.hero__overlay {
    position: absolute; inset: 0;
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 180px;
}
.hero__content { max-width: 540px; }
.hero__title {
    font-family: var(--ff-heading);
    font-weight: 600;
    color: #fff;
    font-size: clamp(36px, 5vw, 70px);
    line-height: 1.1;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero__search { position: relative; margin-bottom: 22px; max-width: 440px; }
.hero__search .form-control {
    height: 48px;
    border-radius: 10px;
    border: none;
    padding: 10px 56px 10px 22px;
    font-size: 18px;
    background: rgba(255,255,255,.95);
    box-shadow: var(--sh-soft);
}
.hero__search .form-control:focus {
    box-shadow: 0 0 0 3px rgba(168,152,91,.35);
    outline: none;
}
.hero__search-btn {
    position: absolute;
    top: 4px; right: 4px;
    width: 40px; height: 40px;
    border-radius: 6px;
    border: none;
    background: var(--cc-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
}
.hero__search-btn:hover { background: var(--cc-primary-dark); }
.hero__intro {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 28px;
    max-width: 440px;
}
.hero__intro strong { color: var(--cc-white); font-weight: 700; }
.hero__divider {
    position: absolute;
    left: 0; right: 0; bottom: -3px;
    z-index: 2;
}
.hero__divider img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== CULTUURSTROMEN ===================== */
.cultuurstromen {
    background: url("../assets/images/Mycultuurcrann.jpeg") center/cover no-repeat;
    padding: 30px 0 80px;
    position: relative;
}
.cultuurstromen__grid { row-gap: 32px !important; }
.stroom-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 8px;
    border-radius: var(--r-md);
    transition: transform .25s ease;
    border: 1px solid transparent;
}
.stroom-card:hover { 
    transform: translateY(-4px);
    background-color: var(--cc-white); 
    border: 1px solid var(--cc-primary);
}
.stroom-card__icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cc-primary);
    color: #fff;
    margin-bottom: 18px;
    box-shadow: var(--sh-card);
    transition: transform .25s ease;
}
.stroom-card:hover .stroom-card__icon { transform: scale(1.06); }
.stroom-card__icon img { width: 100%; height: auto; }

.stroom-card__icon--muziek     { background: var(--c-muziek); }
.stroom-card__icon--film       { background: var(--c-film); }
.stroom-card__icon--dans       { background: var(--c-dans); }
.stroom-card__icon--literatuur { background: var(--c-literatuur); }
.stroom-card__icon--kunst      { background: var(--c-kunst); }
.stroom-card__icon--theater    { background: var(--c-theater); }

.stroom-card__title {
    font-family: var(--ff-heading);
    font-weight: 400;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.stroom-card__desc {
    font-size: 12px;
    color: var(--cc-text-muted);
    margin: 0;
    font-weight: 600;
}
.cultuurstromen__divider{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -45px;
    z-index: 2;
}
.cultuurstromen .linebg{
    background: url("../assets/icons/Line1.svg") right center no-repeat;
}
.cultuurstromen__divider img { width: 100%; height: 100%; object-fit: cover; }
/* ===================== ACTIVITEITEN ===================== */
.activiteiten {
    background: var(--cc-white);
    padding: 130px 0 160px;
    position: relative;
}

.event-card {
    background: #fff;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--cc-grey);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(43,31,43,.12);
    background: #FFF8F4;
}
.event-card__media {
    overflow: hidden;
    padding: 10px;
}
.event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.event-card:hover .event-card__media img { transform: scale(1.01); }
.event-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.event-card__body img {
    display: inline;
    margin-right: 5px;
}

.event-card__date {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.event-card__date img { width: 14px; height: auto; margin-top: -3px; }
.event-card__title {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-family: var(--ff-body);
}
.event-card__excerpt {
    font-size: 18px;
    color: var(--cc-text-muted);
    margin-bottom: 20px;
    flex: 1;
}
.event-card__link {
    color: var(--cc-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--cc-grey);
}
.event-card__link:hover { color: var(--cc-primary-dark); }

/* ===================== LIEFHEBBERS ===================== */
.liefhebbers {
    background: url('../assets/images/aboutbg1.svg') center/cover no-repeat;
    padding: 0px 0 90px 0px;
}
.liefhebbers__images {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
}
.liefhebbers__img img { width: 100%; height: 100%; object-fit: cover; }

.liefhebbers__badge {
    display: inline-flex;
    width: 80px; height: 80px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.liefhebbers__title {
    font-family: var(--ff-heading);
    font-weight: 400;
    font-size: clamp(26px, 4vw, 50px);
    line-height: 1.2;
    margin-bottom: 18px;
}
.liefhebbers__text {
    font-size: 18px;
    color: var(--cc-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ===================== OVER CULTUURCRAAN ===================== */
.over-cultuurcraan {
    position: relative;
    padding: 90px 0;
    background: url('../assets/images/over-cultuurcraan-bg.jpg') center/cover no-repeat;
    color: #fff;
    isolation: isolate;
}
.over__divider{
    position: absolute;
    left: 0; right: 0; top: -3px;
    z-index: 2;
}
.over__divider img { width: 100%; height: 100%; object-fit: cover; }
.over-cultuurcraan__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
    z-index: 0;
}
.over-cultuurcraan .container { z-index: 1; }
.over-cultuurcraan__title {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: clamp(38px, 5vw, 70px);
    margin-bottom: 22px;
}
.over-cultuurcraan__text {
    max-width: 620px;
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* ===================== NIEUWSBRIEF ===================== */
.nieuwsbrief {
    background: url("../assets/images/Newsletterbg.jpeg") center/cover no-repeat;
    padding: 45px 0;
}
.nieuwsbrief__images {
    position: relative;
    margin: 0 auto;
    align-content: center;
}
.nieuwsbrief__img img { width: 100%; height: 100%; object-fit: cover; }

.nieuwsbrief__title {
    font-family: var(--ff-heading);
    font-weight: 400;
    font-size: clamp(26px, 4vw, 50px);
    color: var(--cc-text);
    margin-bottom: 14px;
    text-align: center;
}
.nieuwsbrief__text {
    font-size: 18px;
    color: var(--cc-text-muted);
    margin-bottom: 22px;
    text-align: center;
}
.nieuwsbrief__form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}
.nieuwsbrief__input-wrap { flex: 1; min-width: 240px; }
.nieuwsbrief__input-wrap .form-control {
    height: 48px;
    border-radius: var(--r-pill);
    border: 1px solid var(--cc-border);
    padding: 10px 22px;
    font-size: 18px;
    background: #fff;
    box-shadow: var(--sh-soft);
}
.nieuwsbrief__input-wrap .form-control:focus {
    border-color: var(--cc-primary);
    box-shadow: 0 0 0 3px rgba(168,152,91,.2);
    outline: none;
}
.nieuwsbrief__notice {
    font-size: 12px;
    color: var(--cc-text-muted);
    margin: 0;
    display: inline-flex;
}
.nieuwsbrief__notice a {
    text-decoration: underline;
    margin-left: 2px;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--cc-dark);
    color: rgba(255,255,255,.85);
    padding: 50px 0 10px;
    position: relative;
}
.footer-logo img {
    width: 50%;
}
.footer-col__title {
    font-family: var(--ff-heading);
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a {
    color: rgba(255,255,255,.8);
    font-size: 18px;
    transition: color .2s ease;
    display: block ruby;
}
.footer-list a:hover { color: var(--cc-yellow); }

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 50px; height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
}
.footer-social a img {
    width: 100%;
}
.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-copy {
    margin-top: 50px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.5);
}

/* =====================================================
   RESPONSIVE — TABLET (≤ 991px)
   ===================================================== */
@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background: var(--cc-cream-light);
        padding: 16px;
        border-radius: var(--r-md);
        margin-top: 12px;
        box-shadow: var(--sh-card);
    }
    .site-header .nav-link { padding: 10px 0 !important; }
    .site-header .btn-primary-cc { width: 100%; justify-content: center; margin-top: 10px; }

    .hero { min-height: 480px; }
    .hero .container { padding-top: 60px; padding-bottom: 90px; }

    .liefhebbers__images,
    .nieuwsbrief__images { margin-bottom: 32px; }
    .site-header .navbar {
    padding: 5px 0;
    }
    .site-header .nav-logo{
        width: 100px;
    }
    .site-header .nav-link::after{
        display: none;
    }
    .stroom-card{
        padding: 20px 8px;
    }
    .liefhebbers__badge, .liefhebbers__badge img{ 
        width: 100px;
        height: 100px;
    }
    .liefhebbers__title{
        font-size: clamp(32px, 4vw, 50px);
    }
    .nieuwsbrief__notice img{
        margin-top: -15px;
    }
    
}

/* =====================================================
   RESPONSIVE — MOBILE (≤ 575px)
   ===================================================== */
@media (max-width: 575.98px) {
    .top-bar { font-size: 12px; }
    .section-title { margin-bottom: 36px; }

    .hero__title { font-size: 32px; }
    .hero__intro { font-size: 13px; }

    .cultuurstromen { padding: 60px 0; }
    .stroom-card__icon { width: 80px; height: 80px; }
    .stroom-card__title { font-size: 16px; }

    .activiteiten { padding: 60px 0 70px; }
    .ribbon { font-size: 18px; padding: 10px 22px; }

    .liefhebbers, .nieuwsbrief { padding: 60px 0; }
    .over-cultuurcraan { padding: 70px 0; }

    .nieuwsbrief__form { flex-direction: column; align-items: stretch; }
    .nieuwsbrief__form .btn-cta { justify-content: center; }

    .site-footer { padding: 50px 0 20px; }
    .cultuurstromen__divider { bottom: -20px; }
}