/* PARENT: flex-direction: column stacks children vertically */
.site-footer {
    display: flex;
    flex-direction: column;    /* Stack nav + text vertically */
    justify-content: center;   /* Center vertically */
    align-items: center;       /* Center horizontally */
    background-color: #F9FAFF;
    padding: 1rem 2rem;
    gap: 0.5rem;               /* Space between nav and text */
    position: relative;
    z-index: 6;                /* Above hero image (z-index: 5) */
}

/* CHILD: This is also a flex container for the 3 icons */
.footer-nav-list {
    display: flex;
    flex-direction: row;       /* Icons side by side (default) */
    justify-content: center;   /* Center the icons */
    align-items: center;
    gap: 1.5rem;               /* Space between icons */
    list-style-type: none;     /* Remove default bullets */
    margin: 0;
    padding: 0;
}

.footer-nav-list a {
    display: inline-block;
    cursor: pointer;
}

.footer-nav-list img {
    display: block;
    pointer-events: none;      /* Let click pass through to anchor */
}

.footer-text {
    text-align: center;
}