/*
 * AH-WIZUAL v0.1
 * Wspólna warstwa prezentacyjna infografik Walaszko.
 */

/* =========================================================
   KONTENER
   ========================================================= */

.ah-wizual {
    width: 100%;
    max-width: 735px;
    margin: 32px auto;
    box-sizing: border-box;
}

.ah-wizual *,
.ah-wizual *::before,
.ah-wizual *::after {
    box-sizing: border-box;
}

.ah-wizual svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}


/* =========================================================
   PODSTAWOWA TYPOGRAFIA SVG
   ========================================================= */

.ah-wizual text {
    font-family: Arial, Helvetica, sans-serif;
}

.ah-wizual .ahv-title {
    font-size: 24px;
    font-weight: 700;
    fill: #111827;
}

.ah-wizual .ahv-label {
    font-size: 16px;
    font-weight: 700;
    fill: #111827;
}

.ah-wizual .ahv-text {
    font-size: 14px;
    font-weight: 400;
    fill: #374151;
}


/* =========================================================
   KOLORY SEMANTYCZNE AH-WIZUAL
   ========================================================= */

.ah-wizual .ahv-fill-main {
    fill: #16a34a;
}

.ah-wizual .ahv-fill-neutral {
    fill: #374151;
}

.ah-wizual .ahv-fill-light {
    fill: #f3f4f6;
}

.ah-wizual .ahv-fill-attention {
    fill: #f59e0b;
}

.ah-wizual .ahv-fill-error {
    fill: #dc2626;
}

.ah-wizual .ahv-stroke-main {
    stroke: #16a34a;
}

.ah-wizual .ahv-stroke-neutral {
    stroke: #374151;
}

.ah-wizual .ahv-stroke-attention {
    stroke: #f59e0b;
}

.ah-wizual .ahv-stroke-error {
    stroke: #dc2626;
}


/* =========================================================
   ELEMENTY INTERAKTYWNE
   ========================================================= */

.ah-wizual [data-ahv-target],
.ah-wizual [data-ahv-toggle] {
    cursor: pointer;
    transition:
        opacity .18s ease,
        transform .18s ease;
    transform-box: fill-box;
    transform-origin: center;
}

.ah-wizual [data-ahv-target]:hover,
.ah-wizual [data-ahv-toggle]:hover {
    opacity: .82;
}

.ah-wizual [data-ahv-target]:focus-visible,
.ah-wizual [data-ahv-toggle]:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 4px;
}

.ah-wizual [data-ahv-target].ahv-active,
.ah-wizual [data-ahv-toggle].ahv-active {
    opacity: 1;
}


/* =========================================================
   PUNKTY / HOTSPOTY
   ========================================================= */

.ah-wizual .ahv-hotspot {
    cursor: pointer;
}

.ah-wizual .ahv-hotspot-marker {
    fill: #f59e0b;
    stroke: #111827;
    stroke-width: 3;
    transition:
        fill .18s ease,
        stroke-width .18s ease,
        transform .18s ease;
    transform-box: fill-box;
    transform-origin: center;
}

.ah-wizual .ahv-hotspot:hover .ahv-hotspot-marker,
.ah-wizual .ahv-hotspot:focus-visible .ahv-hotspot-marker {
    fill: #fbbf24;
    stroke-width: 4;
    transform: scale(1.08);
}

.ah-wizual .ahv-hotspot.ahv-active .ahv-hotspot-marker {
    fill: #16a34a;
}


/* =========================================================
   OPIS PO KLIKNIĘCIU
   ========================================================= */

.ahv-info {
    max-width: 735px;
    margin: 12px auto 24px;
    padding: 16px 18px;
    border: 1px solid #d1d5db;
    border-left: 4px solid #16a34a;
    border-radius: 8px;
    background: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

.ahv-info[hidden] {
    display: none;
}

.ahv-info.ahv-active,
.ahv-info.ahv-open {
    display: block;
}


/* =========================================================
   PODPIS
   ========================================================= */

.ah-wizual figcaption,
.ah-wizual .ahv-caption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .ah-wizual {
        margin: 24px auto;
    }

    .ah-wizual .ahv-title {
        font-size: 20px;
    }

    .ah-wizual .ahv-label {
        font-size: 15px;
    }

    .ah-wizual .ahv-text {
        font-size: 13px;
    }

    .ahv-info {
        padding: 14px;
    }
}


/* =========================================================
   OGRANICZENIE ANIMACJI
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ah-wizual *,
    .ah-wizual *::before,
    .ah-wizual *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}
