/* BBF:Design Footer Styles */

.bbf-footer {
    background: #f5efe7;
    color: #1d1d1f;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e6dfd2;
}

.bbf-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d0a989 50%, transparent 100%);
}

.footer-main {
    padding: 60px 0 40px;
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Brand Column */
.footer-brand {
    padding-right: 20px;
}

.footer-logo h2 {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #0f0f0f; /* darker brand heading */
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #1d1d1f; /* darker tagline */
    line-height: 1.2;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #3b3b40;
    margin: 0;
    max-width: 280px;
}

/* Social links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d2c6;
    border-radius: 50%;
    color: #0f0f0f;
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-social a:hover {
    background: #0f0f0f;
    color: #fff;
}
.footer-social svg {
    width: 14px;
    height: 14px;
    display: block;
}

/* Column Titles */
.footer-title {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c8b79d;
    border-radius: 1px;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-list a {
    color: #3b3b40;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.footer-list a:hover {
    color: #000000;
    transform: translateX(4px);
}

.footer-list a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #c8b79d;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-list a:hover::before {
    opacity: 1;
}

/* Contact Info */
.footer-contact-info {
    color: #3b3b40;
}

.contact-item {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #1d1d1f;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3b3b40;
}

/* Footer Bottom */
.footer-bottom {
    background: transparent;
    padding: 24px 0;
    border-top: 1px solid #e6dfd2;
}

.footer-bottom .footer-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #3b3b40;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-legal a:hover {
    color: #000000;
}

.footer-bottom-center p {
    color: #3b3b40;
    font-size: 12px;
    margin: 0;
    text-align: center;
}

.footer-credit {
    font-size: 11px;
    color: #6a6a6f;
    margin: 0;
    text-align: right;
}

.footer-credit a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #3b3b40;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 20px;
        padding-right: 0;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo h2 {
        font-size: 28px;
    }
    
    .footer-description {
        max-width: none;
        text-align: center;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        margin-top: 30px;
    }
    
    .footer-contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-bottom .footer-container {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-credit {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-bottom-center p {
        font-size: 11px;
        line-height: 1.4;
    }
} 