/* Footer Styles */

footer {
    background: rgba(22, 22, 29, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    text-align: center;
    border-top: 2px solid rgba(230, 57, 70, 0.3);
    margin-top: auto;
}

footer .footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer p {
    margin: 0;
    color: var(--gray-text);
}

/* Social Media Icons */
ul#social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

ul#social li {
    display: inline-block;
}

ul#social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.2);
    transition: var(--transition);
    position: relative;
}

ul#social li a:hover {
    background: var(--primary-red);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

a.facebook, a.twitter, a.mailingList {
    text-indent: -9999px;
    overflow: hidden;
    position: relative;
}

a.facebook::before,
a.twitter::before,
a.mailingList::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: var(--white);
    text-indent: 0;
}

a.facebook::before {
    content: 'f';
    font-family: serif;
    font-style: italic;
    font-size: 28px;
}

a.twitter::before {
    content: '𝕏';
    font-size: 20px;
}

a.mailingList::before {
    content: '✉';
    font-size: 22px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer .footer-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}
