/* Footer Styles */
.site-footer {
    background-color: rgba(6, 16, 45, 0.9);
    position: relative;
    padding: 4rem 20px 2rem;
    margin-top: 6rem;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10px 10px, rgba(205, 181, 86, 0.1) 1px, transparent 0),
        radial-gradient(circle at 30px 30px, rgba(205, 181, 86, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    color: #cdb556;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact p {
    margin: 0.5rem 0;
    color: #edebff;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(205, 181, 86, 0.2);
    width: 100%;
    color: rgba(237, 235, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-contact {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}
