/* Footer Styles */
footer {
    background: linear-gradient(135deg, #2f3a44, #3a4651);
    padding: 40px 20px 20px;
    color: #f5f5e8;
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    font-weight: 800;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #f5f5e8;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.link-column {
    min-width: 140px;
}

.link-column h4 {
    font-weight: 700;
    font-size: 1rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    text-decoration: none;
    color: #f5f5e8;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.link-column ul li a:hover {
    color: #d4af37;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
}

.social-icons .icon {
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 600;
    color: #f5f5e8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.legacy-mark {
    display: flex;
    align-items: center;
    gap: 15px;
}

.monogram {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #d4af37;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d4af37;
    border-radius: 50%;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal {
    text-align: right;
}

.copyright {
    font-size: 0.8rem;
    color: #f5f5e8;
    margin-bottom: 5px;
}

.legacy-quote {
    font-size: 0.75rem;
    color: rgba(245, 245, 232, 0.7);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legacy-mark {
        justify-content: center;
    }
    
    .legal {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 25px;
    }
    
    .link-column {
        min-width: 100%;
    }
}