/* ==========================================================================
   Variant B: Warm & Community
   Rondere vormen, warmere uitstraling, foto's centraal
   ========================================================================== */

:root {
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

/* Zachte heading stijl */
h1 {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-weight: 700;
}

/* Hero community */
.hero--community {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

.hero--community .hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.hero--community .hero__badge {
    background-color: rgba(193, 39, 45, 0.1);
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Kaarten met warmere uitstraling */
.card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-100);
    box-shadow: none;
}

.card:hover {
    border-color: var(--color-gray-200);
    box-shadow: var(--shadow-md);
}

.card__image {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Rondere buttons */
.btn {
    border-radius: 100px;
}

/* CTA blok warmer */
.cta-block {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

/* Section headers met subtielere accenten */
.section__title {
    position: relative;
}

.section__header {
    margin-bottom: 2.5rem;
}

/* About preview - rondere afbeelding */
.about-preview__image img {
    border-radius: var(--radius-xl);
}

/* Sponsor logos ronder */
.sponsor-logo {
    border-radius: var(--radius-lg);
}

/* Nav items zachter */
.site-header__menu > li > a {
    border-radius: 100px;
}

/* Hero images met schaduw */
.hero__grid-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Trust items met icon-achtige stijl */
.hero__trust-item {
    background-color: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hero__trust {
    border-top: none;
    padding-top: 0;
}

/* Footer met warmere uitstraling */
.site-footer__social a {
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color var(--transition);
}

.site-footer__social a:hover {
    background-color: var(--color-primary);
}
