/* ========== FOOTER ========== */
.site-footer {
    position: static;       /* natural flow */
    clear: both;            /* below content */
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: transparent;
}

.footer-content {
    text-align: center;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Top Image + Text */
.footer-top-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-top-image {
    width: 120px;
    height: auto;
    max-width: 100%;
}

.footer-top-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5a24;  /* higher contrast than #5d7030 */
    line-height: 1.4;
}

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
    margin-bottom: -50px;
}

.footer-social a,
.footer-social img,
.footer-social svg {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}

/* Keyboard focus for social links */
.footer-social a:focus {
    outline: 3px solid #c2185b; /* visible pink focus */
    outline-offset: 2px;
}

/* Decorative Line */
.footer-decoration {
    margin: 10px 0;
}

.footer-line {
    width: 55%;
    max-width: 600px;
    height: auto;
    margin-bottom: -30px;
}

/* Footer Text */
.footer-text {
    font-size: 1rem;
    color: #4a5a24;
    line-height: 1.8;
    max-width: 600px;
    text-align: center;
}

/* Footer Links */
.footer-text a {
    color: #4a5a24;           /* sufficient contrast */
    text-decoration: underline;
}

.footer-text a:hover,
.footer-text a:focus {
    color: #c2185b;           /* branding accent */
    text-decoration: underline;
    outline: 3px solid #c2185b;
    outline-offset: 2px;
}

/* Footer Paragraphs */
.footer-text p {
    margin: 0 0 10px 0;
}

/* Copyright */
.footer-copyright {
    font-size: 0.9rem;
    color: #6b7a4f;
    font-style: italic;
}
