/* Footer Styles */

.site-footer {
    background-color: #5C4033;
    color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-family: 'Inter', sans-serif;
    /* Ensure font is inherited or set */
}

/* Layout */
.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-layout>* {
    flex: 1;
}

/* Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 2.5rem;
    /* 40px */
    display: flex;
    align-items: center;
}

.footer-logo-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B4513;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo .text-xl {
    font-size: var(--font-size-h4);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.footer-brand p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 24rem;
    /* max-w-sm approx */
}

/* Headings */
.footer-links h3,
.footer-contact h3 {
    font-size: var(--font-size-h5);
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    /* Optional, matches headings usually */
}

/* Lists */
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
    font-size: var(--font-size-base);
    /* ~15px */
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Contact Items */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Icons */
.footer-contact svg,
.footer-logo svg {
    width: 1.25rem;
    /* 20px */
    height: 1.25rem;
    flex-shrink: 0;
}

.footer-contact svg {
    margin-top: 0.125rem;
    /* Align with text top */
}

/* Social Buttons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.site-footer .social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #ffffff !important;
    /* Force white color to override theme link styles */
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Add subtle border for definition */
}

.site-footer .social-btn:hover {
    background-color: #ffffff;
    /* White background on hover */
    color: #5C4033 !important;
    /* Brown icon on hover */
    transform: translateY(-2px);
}

.social-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    /* Ensure SVG uses the text color */
}

/* Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 0;
}

/* Media Queries consolidated at the end */
@media (max-width: 767px) {
    .footer-layout {
        flex-direction: column;
        gap: 2rem;
    }
}