/* Shared styles voor Ragunda modules */
:root {
    --ragunda-primary: #000000;
    --ragunda-secondary: #ffffff;
    --ragunda-accent: #ff0000;
    --ragunda-text: #333333;
    --ragunda-font: 'Arial', sans-serif;
}

/* Universele font voor alles behalve H1, H2, H3 */
body, :not(h1):not(h2):not(h3) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-display: swap;
}

/* Gotkin font voor headings - gebruik Use Any Font class */
h1, h2, h3, .ragunda-title {
    font-family: 'gotkin-bold', 'Georgia', 'Times New Roman', 'Times', serif;
    font-display: swap;
}

/* ===== ACTIVITIES SEIZOEN LABELS ===== */

.ragunda-activity-seasons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.ragunda-season-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: #fff;
}

.ragunda-season-summer {
    background: #ff6b35;
}

.ragunda-season-winter {
    background: #4a90e2;
} 