/*
Plugin: Brand Styles Framework
Description: Vlastní CSS pro kontejnery, nadpisy, tlačítka aj.
*/

/* Příklad "design tokens" (možno přizpůsobit) */
:root {
    --bsf-spacing-lg: 2rem;
    --bsf-radius-md: 10px;
    --bsf-shadow-sm: 0 3px 8px rgba(0,0,0,0.1);
    --bsf-color-primary: #0069ed;
    --bsf-color-primary-hover: #004bb5;
    --bsf-color-text: #333;
    --bsf-bg-muted: #f5f5f5;
}

/* Komponenty */
.bsf-container {
    background-color: var(--bsf-bg-muted);
    padding: var(--bsf-spacing-lg);
    border-radius: var(--bsf-radius-md);
    box-shadow: var(--bsf-shadow-sm);
}

.bsf-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bsf-color-text);
    margin-bottom: 1rem;
    text-align: center;
}

.bsf-button {
    background-color: var(--bsf-color-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.bsf-button:hover {
    background-color: var(--bsf-color-primary-hover);
}
