/* =============================================
   JOSH ARKSEY SPORTS MASSAGE - FOOTER
   arksey-footer-1.css
   All classes prefixed with 'arksey-' to avoid conflicts
   ============================================= */

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

.arksey-footer {
    background: #000000;
    padding: 0;
    position: relative;
}

/* Red accent line at top to separate from reviews */
.arksey-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
}

.arksey-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}


/* =============================================
   FOOTER TOP - LOGO & SOCIAL
   ============================================= */

.arksey-footer-top {
    padding: 55px 20px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.arksey-footer-logo {
    display: block;
    margin: 0 auto 25px;
}

.arksey-footer-logo a {
    display: inline-block;
}

.arksey-footer-logo img {
    height: 90px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.arksey-footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.arksey-footer-social-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arksey-footer-social-link:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}


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

.arksey-footer-nav {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.arksey-footer-menu-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.arksey-footer-menu-item {
    margin: 0;
}

.arksey-footer-menu-link {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.arksey-footer-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: #ff0000;
    transition: all 0.3s ease;
}

.arksey-footer-menu-link:hover {
    color: #ffffff;
}

.arksey-footer-menu-link:hover::after {
    left: 0;
    right: 0;
}


/* =============================================
   FOOTER BOTTOM - COPYRIGHT
   ============================================= */

.arksey-footer-bottom {
    padding: 25px 20px;
    text-align: center;
}

.arksey-footer-copyright {
    font-family: 'K2D', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.arksey-footer-credit-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.arksey-footer-credit-link:hover {
    color: #ff0000;
}


/* =============================================
   FOOTER TABLET (max-width: 1024px)
   ============================================= */

@media (max-width: 1024px) {
    .arksey-footer-logo img {
        height: 80px;
    }
    
    .arksey-footer-social-link {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .arksey-footer-menu-link {
        font-size: 12px;
    }
}


/* =============================================
   FOOTER MOBILE (max-width: 768px)
   ============================================= */

@media (max-width: 768px) {
    .arksey-footer-top {
        padding: 40px 15px 30px;
    }
    
    .arksey-footer-logo img {
        height: 70px;
    }
    
    .arksey-footer-social {
        gap: 12px;
    }
    
    .arksey-footer-social-link {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
    
    .arksey-footer-nav {
        padding: 25px 15px;
    }
    
    .arksey-footer-menu-list {
        gap: 8px 20px;
    }
    
    .arksey-footer-menu-link {
        font-size: 11px;
    }
    
    .arksey-footer-bottom {
        padding: 20px 15px;
    }
    
    .arksey-footer-copyright {
        font-size: 13px;
    }
}


/* =============================================
   FOOTER SMALL MOBILE (max-width: 480px)
   ============================================= */

@media (max-width: 480px) {
    .arksey-footer-top {
        padding: 35px 12px 25px;
    }
    
    .arksey-footer-logo img {
        height: 60px;
    }
    
    .arksey-footer-logo {
        margin-bottom: 20px;
    }
    
    .arksey-footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .arksey-footer-nav {
        padding: 20px 12px;
    }
    
    .arksey-footer-menu-list {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .arksey-footer-menu-link {
        font-size: 12px;
    }
    
    .arksey-footer-bottom {
        padding: 18px 12px;
    }
    
    .arksey-footer-copyright {
        font-size: 12px;
        line-height: 1.5;
    }
}