/* ============================================
   FOOTER STYLES
============================================ */

.site-footer {
    /* Default — used on inner pages. Solid #333333 (client spec, May 2026)
       — homepage uses its own transparent + gradient via the override below. */
    background: #333333;
    padding: 40px 0 28px;
}

/* On the homepage the footer is INSIDE .featured-cta-footer-bg (which has
   its own radial gradient), so override back to transparent so the parent
   gradient flows through naturally — homepage visual stays exactly as designed. */
.featured-cta-footer-bg .site-footer {
    background: transparent;
    padding: 0 0 28px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Divider line that sits just above the social icons. */
.footer-divider {
    width: 50%;
    height: 1px;
    background-color: rgba(200, 154, 74, 0.7);
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

/* Each anchor wraps an inline SVG. Icon color is controlled via `color`
   (the SVG's path uses fill="currentColor"). */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    /* !important because Elementor's kit-10 sets all <a> color globally
       to its accent (#C69F73 gold) which would tint the SVG (it uses
       fill="currentColor"). */
    color: #ffffff !important;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

.social-icon svg path {
    fill: currentColor;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #c89a4a !important;
}

.copyright {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 800;
    color: #c89a4a;
    text-align: center;
}


/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .social-icon {
        width: 46px;
        height: 46px;
    }

    .social-icons {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icons {
        gap: 26px;
    }

    .footer-inner {
        gap: 22px;
    }

    .copyright {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .social-icon {
        width: 34px;
        height: 34px;
    }

    .social-icons {
        gap: 22px;
    }

    .copyright {
        font-size: 13px;
    }
}
