/* ============================================
   SITE FOOTER (shared across the entire app)
   ----------------------------------------------
   Owned by fragments/general :: footer. Loaded by
   both general.html's `head` fragment and the legal
   pages' `legal-head` fragment so the footer renders
   identically on every page that renders the
   `footer` th:block — including the legal pages,
   which use a different head fragment.
   ============================================ */

.site-footer {
    background: #D32F2F;
    padding: 32px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.footer-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-circle-1 {
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-circle-2 {
    bottom: -40px; left: -40px;
    width: 130px; height: 130px;
    background: rgba(0, 0, 0, 0.07);
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.02em;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
    font-weight: 400;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.04em;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

/* Legal-links row inside the footer (Privatnost · Uvjeti · Kolačići). */
.site-footer .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    justify-content: center;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.site-footer .footer-legal-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer .footer-legal-links a:hover {
    color: #fff;
    text-decoration: underline;
}
