/* ========== FOOTER ========== */
.ics-footer {
    background-color: #1D130C;
    /* matches header */
    color: #f2e9dc;
    /* cream text */
    padding: 2rem 1rem;
    text-align: center;
    border-top: 2px solid #3b2f25;
    font-family: "Roboto", sans-serif;
}

.ics-footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Social icons */
.ics-footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.ics-footer__social a {
    font-size: 1.25rem;
    color: #f2e9dc;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ics-footer__social a:hover {
    transform: scale(1.15);
}

.ics-footer__social a[aria-label="YouTube"]:hover {
    color: #ff3c3c;
}

.ics-footer__social a[aria-label="Facebook"]:hover {
    color: #1877f2;
}

.ics-footer__social a[aria-label="Instagram"]:hover {
    color: #d6249f;
}

/* Copyright */
.ics-footer__copyright {
    font-size: 0.95rem;
    color: #d3c4b5;
    margin-top: 0.5rem;
    line-height: 1.3;
}

/* Responsive tweak */
@media (max-width: 600px) {
    .ics-footer__social {
        gap: 1rem;
    }

    .ics-footer__social a {
        font-size: 1.1rem;
    }
}