/*
Theme Name: Afostodata
Theme URI: https://afostodata.ro/
Author: Afostodata
Description: Temă minimă construită pentru Afostodata v2. Rol: shell subțire pentru Elementor și pentru widget-urile din plugin-ul afostodata-widgets.
Version: 0.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: afostodata
*/

:root {
    --c-green:  #007a3f;
    --c-blue:   #0081cc;
    --c-red:    #bc1823;
    --c-orange: #ff8210;
    --c-yellow: #ffd230;
    --c-ink:    #0f1419;
    --c-paper:  #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--c-ink);
    background: var(--c-paper);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue); }

/* Breadcrumbs (shared component) */
.afd-crumbs {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.82rem;
    color: rgba(15, 20, 25, 0.6);
}
.afd-crumbs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.afd-crumbs__item { display: inline-flex; align-items: center; }
.afd-crumbs__item + .afd-crumbs__item::before {
    content: "/";
    margin-right: 8px;
    opacity: 0.5;
}
.afd-crumbs__item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.afd-crumbs__item a:hover { color: var(--cat-color, var(--c-orange)); }
.afd-crumbs__item [aria-current] {
    color: var(--c-ink);
    font-weight: 600;
}

