:root {
    --primary: #c0392b;
    --primary-hover: #a93226;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --border-radius: 12px;
}

body {
    font-family: var(--font-body);
    background: #f7f7f7;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, .events-title h1, .event-title-block h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #c0392b;
    line-height: 1.3;
}
.btn, .tab-filters button, a.btn-detail, .event-date-ribbon {
    font-family: var(--font-heading);
    font-weight: 600;
}


.card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background: white;
}

.btn {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.btn:hover {
    background: var(--primary-hover);
}

.event-date-ribbon {
    background: var(--primary);
}
.event-image,
.event-thumb {
    width: 100%;
    height: auto;
    max-width: 100%;
}
