/* =========================================================
   OPG Footer — site footer.
   :root tokeni duplicirani (Bee Jump pattern). Slika
   "footer-bg.jpg" je 1920×203 wide banner s pčelom u top-left
   i cvjetovima/listovima u bottom-right; renderira se kao
   <img> da prikaže puni aspect (cover bi rezao decorativne
   elemente sa strana). Tekst se overlay-a apsolutnim
   pozicioniranjem unutar footer-a.
   ========================================================= */
:root {
    --opg-brand: #f7bd00;
    --opg-brand-dark: #eb6d2f;
    --opg-ink: #5a3733;
    --opg-ink-soft: #8b6a63;
    --opg-cream: #f9f4f0;
    --opg-white: #ffffff;
    --opg-font-heading: 'Signika Negative', system-ui, sans-serif;
    --opg-font-body: 'Open Sans', system-ui, sans-serif;
}

.opg-footer {
    position: relative;
    width: 100%;
    background-color: var(--opg-cream, #f9f4f0);
    color: var(--opg-ink, #5a3733);
    font-family: var(--opg-font-body, system-ui, sans-serif);
    text-align: center;
    overflow: hidden;
    min-height: 180px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .opg-footer {
        min-height: 220px;
    }
}

.opg-footer__bg {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    pointer-events: none;
}

.opg-footer__inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 16px 12px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .opg-footer__inner {
        padding: 20px 24px 14px;
    }
}

/* ---------- Heading ---------- */

.opg-footer__heading {
    font-family: var(--opg-font-heading, sans-serif);
    font-weight: 700;
    color: var(--opg-ink, #5a3733);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1rem;
    margin: 0 0 10px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .opg-footer__heading {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
}

/* ---------- Contact lines ---------- */

.opg-footer__line {
    margin: 2px 0;
    font-size: 0.82rem;
    color: var(--opg-ink, #5a3733);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .opg-footer__line {
        font-size: 0.88rem;
    }
}

.opg-footer__label {
    font-weight: 600;
    color: var(--opg-ink, #5a3733);
    margin-right: 4px;
}

.opg-footer__phone {
    color: var(--opg-ink, #5a3733);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.opg-footer__phone:hover,
.opg-footer__phone:focus-visible {
    color: var(--opg-brand-dark, #eb6d2f);
}

/* ---------- Copyright row ---------- */

.opg-footer__copy {
    margin: 14px 0 0;
    font-size: 0.65rem;
    color: var(--opg-ink-soft, #8b6a63);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .opg-footer__copy {
        margin-top: 18px;
        font-size: 0.72rem;
    }
}

.opg-footer__credit {
    display: inline-block;
    margin-left: 4px;
}

.opg-footer__credit-link {
    color: var(--opg-ink-soft, #8b6a63);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.opg-footer__credit-link:hover,
.opg-footer__credit-link:focus-visible {
    color: var(--opg-brand-dark, #eb6d2f);
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    .opg-footer__phone,
    .opg-footer__credit-link {
        transition: none;
    }
}
