/* ================================================
   footer.css — RidePro shared footer styles
   Include this on every user-facing page.
   ================================================ */

.site-footer {
    background: #1a1a1a;
    color: #8b8888;
    position: relative;
}

.footer-mountain {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #1a1a1a;
}

.mountain-svg {
    width: 100%;
    height: 130px;
    display: block;
}

.footer-body {
    padding: 3rem 3rem 2.5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a,
.footer-section p a {
    color: #999;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-section ul li a:hover,
.footer-section p a:hover {
    color: #fff;
}

.footer-section p {
    color: #999;
    font-size: 0.82rem;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #2e2e2e;
}

.copyright {
    font-size: 0.78rem;
    color: #555;
}

.social-icons {
    display: flex;
    gap: 1.1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    color: #666;
    transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* ── Footer Responsive ──────────────────────────── */
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-body {
        padding: 2.5rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .mountain-svg {
        height: 80px;
    }
}