/* === css/footer.css === */

:root {
    --primary-white: #FFFFFF;
    --light-grey-text: #EAEAEA;
    --black: #0a0a0a;
    --grey: #cccccc;
}

/* --- Footer Styles --- */
footer {
    background-color: var(--black);
    color: var(--grey);
    padding: 60px 5% 30px;
    margin-top: 100px;
    border-top: 1px solid transparent;
    border-image: linear-gradient(to right, rgba(10, 10, 10, 0), rgba(255, 255, 255, 0.4), rgba(10, 10, 10, 0)) 1;
    border-image-slice: 1;
    position: relative;
    overflow: hidden;
}

/* Decorative Lines */
footer::before,
footer::after {
    content: '';
    position: absolute;
    height: 50px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--primary-white), rgba(255, 255, 255, 0));
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

footer::before {
    top: 0;
    left: 15%;
}

footer::after {
    bottom: 0;
    right: 15%;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-section {
    margin-bottom: 25px;
}

/* Social Icon Links */
.footer-section.social a {
    color: var(--grey);
    margin: 0 18px;
    font-size: 1.7em;
    display: inline-block;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-section.social a:hover {
    color: var(--primary-white);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    transform: translateY(-4px) scale(1.05);
}

/* Text Links */
.footer-section.links a {
    color: var(--grey);
    margin: 0 12px;
    text-decoration: none;
    font-size: 0.95em;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-section.links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--light-grey-text);
    transition: width 0.3s ease-in-out;
}

.footer-section.links a:hover {
    color: var(--primary-white);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer-section.links a:hover::after {
    width: 100%;
}

/* Copyright text */
.footer-bottom {
    margin-top: 40px;
    font-size: 0.9em;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    letter-spacing: 0.5px;
}