/* ====== Footer ====== */
footer {
    background-color: #0e0e0e;
    text-align: center;
    padding: 20px;
    color: #aaa;
}

.custom-footer {
    display: flex;
    justify-content: space-around;
    background-color: #0e0e0e;
    color: #aaa;
    padding: 20px 0;
    flex-wrap: nowrap;
    border-top: 1px solid #222;
}

.footer-column {
    text-align: center;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-column a,
.footer-column p {
    color: #e7d6a8;
    text-decoration: none;
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.6;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #fff;
}
/* ====== Social Icons ====== */
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
}

.social-icons a {
    font-size: 24px;
    color: #e7d6a8;
    transition: transform 0.3s, color 0.3s;
    position: relative;
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
}

.social-icons a::after {
    content: attr(title);
    position: absolute;
    bottom: -25px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    opacity: 0;
    transition opacity; 0.3s, bottom 0.3s;
    white-space: nowrap;
    pointer-events: none;
}

.social-icons a:hover::after {
    opacity: 1;
    bottom: -35px;
}