/*PARKWISE FOOTER */
.parkwise-footer {
    padding: 3rem 0;
    border-top: 1px solid #1f2937;

    /* Force footer font */
    font-family: 'Figtree', sans-serif;
    color: #f9fafb;
}

/* Navbar: everything in Figtree */
.nav-bar, 
.nav-bar * {
    font-family: 'Figtree', sans-serif;
}

/* Mobile menu links */
.mobile-menu-content a {
    font-family: 'Figtree', sans-serif;
}

.parkwise-footer .text-gradient {
    font-family: 'Montserrat', sans-serif;
}

/* Container */
.parkwise-footer .max-w-7xl {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Grid */
.parkwise-footer .grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .parkwise-footer .grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Logo */
.parkwise-footer .footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 0.5rem;
}

/* ParkWise gradient word */
.parkwise-footer .text-gradient {
    font-family: 'Montserrat', sans-serif;
    /* Only this word different */
    font-weight: 900;

    background: linear-gradient(135deg, #6a2cfb 0%, #f45fbb 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: inline-block;
}

/* Apply Figtree only to text elements */
.parkwise-footer,
.parkwise-footer p,
.parkwise-footer h1,
.parkwise-footer h2,
.parkwise-footer h3,
.parkwise-footer h4,
.parkwise-footer h5,
.parkwise-footer h6,
.parkwise-footer li,
.parkwise-footer a,
.parkwise-footer span {
    font-family: 'Figtree', sans-serif;
}

/* Keep ParkWise gradient word Montserrat */
.parkwise-footer .text-gradient {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900;
    background: linear-gradient(135deg, #6a2cfb 0%, #f45fbb 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Footer headings */
.parkwise-footer h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

/* Footer links */
.parkwise-footer ul {
    list-style: none;
    padding: 0;
}

.parkwise-footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color .3s ease;
}

.parkwise-footer ul li a:hover {
    color: #ffffff;
}

/* Social icons */
.parkwise-footer .social-icons {
    display: flex;
    gap: 1rem;
}

.parkwise-footer .social-icons a {
    width: 40px;
    height: 40px;
    background: #1f2937;
    border-radius: 9999px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #9ca3af;

    transition: .3s;
}

.parkwise-footer .social-icons a:hover {
    color: white;
}

/* Bottom row */
.parkwise-footer .footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 1.5rem;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: .5rem;

    font-size: 14px;
    color: #6b7280;
}

/* Icons */
.parkwise-footer .text-green {
    color: #16a34a;
}

.parkwise-footer .text-pink {
    color: #ec4899;
}

footer>div>.border-t a:hover {
    color: #ffffff;
    /* purple on hover */
}

@media (min-width: 768px) {
    footer>div>.border-t {
        flex-direction: row;
    }
}

/* Footer bottom text */
footer p.text-gray-500 {
    color: #6b7280;
    /* text-gray-500 */
    font-size: 0.875rem;
    /* text-sm */
}

/* Footer bottom icons */
footer .flex.items-center i {
    margin: 0 0.25rem;
    /* mx-1 / mx-2 */
}

footer .text-green-500 {
    color: #16a34a;
}

footer .text-pink-500 {
    color: #ec4899;
}