/* ================= FOOTER ================= */

.jp-footer {
    position: relative;
    margin-top: 0px;
    padding: 3.5rem 0 2rem;
    overflow: hidden;
    isolation: isolate;
}

/* fond */
.jp-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 0, 20, 0.7),
            rgba(8, 0, 18, 0.95)
        ),
        radial-gradient(
            circle at 30% 20%,
            rgba(255, 160, 230, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(180, 120, 255, 0.08),
            transparent 30%
        );
}

/* contenu */
.jp-footer .container {
    position: relative;
    z-index: 2;
}

/* top */
.jp-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* brand */
.jp-footer-brand h3 {
    color: #fff;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 0px;
}

.jp-footer-brand p {
    color: rgba(255,255,255,0.75);
    max-width: 320px;
    line-height: 1.6;
}

/* socials */
.jp-footer-socials {
    display: flex;
    gap: 14px;
}

.jp-footer-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #ff9ed6, #b388ff);
    color: #fff;
    font-size: 18px;

    box-shadow: 0 10px 22px rgba(180, 120, 255, 0.35);

    transition: 0.3s;
}

.jp-footer-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 28px rgba(180, 120, 255, 0.45);
}

/* bottom */
.jp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;
}

/* texte */
.jp-footer-bottom span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* links */
.jp-footer-links {
    display: flex;
    gap: 20px;
}

.jp-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.25s;
}

.jp-footer-links a:hover {
    color: #fff;
}
/* =========================
   ADMIN LOGIN
========================= */
.admin-link {
    opacity: 0.2;
    font-size: 0.8rem;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    opacity: 0.8;
    transform: scale(1.2);
}
