/* Footer Base Styles */
.site-footer {
    background-color: rgba(235, 225, 240, 0.788);
    color: var(--nav-text);
    padding: 1rem 1rem 1rem;
    margin-top: 1rem; /* Keeps it away from the content */
    border-top: 4px solid rgba(186, 66, 255, 0.295);
}

.footer-container {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    /* 3 columns: Large brand area, links, then business info */
    grid-template-columns: 2fr 1fr 1.5fr; 
    gap: 1rem;
}

.footer-section h4 {
    color: var(--primary-color); /* Pastel Lavender title */
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brand Section */
.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

/* Links Section */
.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px; /* Subtle slide effect */
}

/* Business Info Section */
.footer-business p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.footer-business strong {
    color: var(--nav-text);
}

/* Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 4px solid rgba(186, 66, 255, 0.295);
    background-color: rgba(218, 200, 226, 0.788);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
}