/**
 * Footer Styles - Matching Kemet Design
 */

/* Footer Background - Darker for better white text visibility */
.footer1-bg {
    background: linear-gradient(135deg, #2a3320 0%, #5d4a3a 100%);
    color: #f1e6db;
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern overlay for depth */
.footer1-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.footer-area1-bg {
    padding-top: 95px;
    padding-bottom: 55px;
}

/* Footer Widgets */
.footer-widget {
    margin-bottom: 40px;
}

.footer-widget-title h4 {
    color: #716248;
    text-decoration: underline;
    text-underline-offset: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-widget p {
    color: #716248;
    line-height: 1.8;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-widget ul li a {
    color: #716248;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.footer-widget ul li a:hover {
    color: #58553e;
    padding-left: 0.5rem;
}

.footer-widget ul li a svg {
    flex-shrink: 0;
}

/* Follow Us Text */
.follow-us-text {
    margin: 0;
    font-size: 1rem;
    color: #d4c4a8;
    font-weight: 600;
}

/* Copyright Area - Darker background */
.copyright-area {
    background: rgb(91 87 63);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.copyright-text {
    color: #d4c4a8;
    font-weight: 600;
}

/* Add subtle gradient overlay to copyright area */
.copyright-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.copyright1-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.copyright-text a {
    color: #f4d03f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: white;
}

/* Social Links */
.social-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-wrapper p {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.social__links {
    display: flex;
    gap: 0.75rem;
}

.social-icon-circle {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-icon-circle:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-area1-bg {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .copyright1-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .social-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-widget-title h4 {
        font-size: 1.1rem;
    }
    
    .footer-widget p,
    .footer-widget ul li a {
        font-size: 0.9rem;
    }
    
    .social__links {
        gap: 0.5rem;
    }
    
    .social-icon-circle {
        width: 35px;
        height: 35px;
    }
    
    .social-icon-circle svg {
        width: 18px;
        height: 18px;
    }
}

