/* ==========================================================
   CUSTOM FOOTER
   Styles for page-based footer content
========================================================== */

.sv-footer-content {
    background: linear-gradient(to bottom, #2c2416 0%, #1a1510 100%);
    color: #d4c5a9;
    padding: 60px 20px 30px;
    font-family: 'EB Garamond', Georgia, serif;
}

/* Footer container */
.sv-footer-content .wpb_row {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer headings */
.sv-footer-content h3,
.sv-footer-content h4 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #e8d9b8;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer text */
.sv-footer-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #c4b59a;
    margin-bottom: 10px;
}

/* Footer links */
.sv-footer-content a {
    color: #d4c5a9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sv-footer-content a:hover {
    color: #f4e5c4;
    text-decoration: underline;
}

/* Navigation menu */
.sv-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-footer-nav li {
    margin-bottom: 10px;
}

.sv-footer-nav a {
    font-size: 16px;
    display: inline-block;
}

/* Social media icons */
.sv-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.sv-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 197, 169, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sv-footer-social a:hover {
    background: rgba(212, 197, 169, 0.2);
    transform: translateY(-2px);
}

.sv-footer-social svg,
.sv-footer-social img {
    width: 20px;
    height: 20px;
    fill: #d4c5a9;
}

/* Copyright/bottom section */
.sv-footer-bottom {
    border-top: 1px solid rgba(212, 197, 169, 0.2);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #a49582;
}

.sv-footer-bottom p {
    margin: 5px 0;
    font-size: 14px;
    color: #a49582;
}

/* Graft of Zion branding */
.sv-footer-branding {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 197, 169, 0.1);
}

.sv-footer-branding p {
    font-size: 13px;
    color: #8a806f;
    font-style: italic;
}

/* Legal links */
.sv-footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.sv-footer-legal a {
    font-size: 14px;
    color: #a49582;
}

/* Responsive */
@media (max-width: 768px) {
    .sv-footer-content {
        padding: 40px 15px 20px;
    }
    
    .sv-footer-content h3,
    .sv-footer-content h4 {
        font-size: 18px;
    }
    
    .sv-footer-social {
        justify-content: center;
    }
    
    .sv-footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}
