/* Footer Section */
.footer-section {
    background-color: #faf9f6;
    /* Light off-white background */
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.brand-col {
    flex: 2;
    /* Wider brand column */
    min-width: 300px;
    padding-right: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.brand-icon {
    width: 24px;
    height: 24px;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name-footer {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 24px;
    /* Icon size */
    height: 24px;
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #777;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

/* Responsiveness for Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .brand-col {
        padding-right: 0;
    }
}