/* Footer CSS - Extracted from home.css */
/* This file contains ONLY footer-related styles */

/* --- FOOTER --- */
body.home-page footer {
    background: #FCF6F6;
    padding-top: 60px;
    font-size: 13px;
    color: #555;
}

body.home-page .footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 40px 40px;
    gap: 30px;
    width: 95%;
    margin: 0 auto;
}

body.home-page .footer-links h4 {
    color: #260160;
    margin-bottom: 20px;
    font-weight: 700;
}

body.home-page .footer-links a {
    display: block;
    margin-bottom: 10px;
}

body.home-page .footer-bottom {
    border-top: 1px solid #eee;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    body.home-page .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Social Media Icons */
.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.socials a,
.socials i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 22px;
    color: var(--primary-brown, #8b4513);
    transition: all 0.3s ease;
    text-decoration: none;
}

.socials a:hover {
    transform: translateY(-3px);
    color: #d4af37;
}

.socials a:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    body.home-page .footer-links {
        grid-template-columns: 1fr;
    }

    body.home-page .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .socials {
        gap: 12px;
    }

    .socials a,
    .socials i {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}