/* ==========================================================================
   FOOTER — LA TROPA DEL SANGLAR D'ARGENT
   ========================================================================== */


/* ==========================================================================
   1. BOUTON — LE PROJET DU SANGLIER
   ========================================================================== */

.site-footer .footer-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: fit-content;
    margin-top: 24px;
    padding: 13px 18px;

    border: 1px solid rgba(190, 70, 70, 0.65);

    background:
        linear-gradient(
            135deg,
            rgba(125, 22, 25, 0.92),
            rgba(82, 13, 16, 0.96)
        );

    color: #f5f5f5;

    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Flèche */
.site-footer .footer-project-button span {
    display: inline-block;

    color: #d8d8d8;
    font-size: 1rem;
    line-height: 1;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}


/* ==========================================================================
   2. SURVOL
   ========================================================================== */

.site-footer .footer-project-button:hover {
    transform: translateY(-2px);

    border-color: rgba(220, 100, 100, 0.9);

    background:
        linear-gradient(
            135deg,
            rgba(150, 27, 31, 0.98),
            rgba(102, 16, 20, 0.98)
        );

    color: #ffffff;

    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.38),
        0 0 18px rgba(130, 25, 28, 0.14);
}


.site-footer .footer-project-button:hover span {
    transform: translateX(4px);
    color: #ffffff;
}


/* ==========================================================================
   3. CLAVIER / ACCESSIBILITÉ
   ========================================================================== */

.site-footer .footer-project-button:focus-visible {
    outline: 2px solid rgba(220, 223, 228, 0.85);
    outline-offset: 4px;
}


/* ==========================================================================
   4. MOBILE
   ========================================================================== */

@media (max-width: 680px) {

    .site-footer .footer-project-button {
        margin-top: 20px;
        padding: 12px 16px;

        font-size: 0.72rem;
    }

}