/* Footer - Editorial Design */

.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section Headings */
.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--color-primary, #673AB7);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section > p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Links */
.footer-links,
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.8rem;
    color: #bbb;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.8rem;
    color: var(--color-primary, #673AB7);
    width: 16px;
    text-align: center;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 1px solid #555;
    color: #bbb;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--color-primary, #673AB7);
    border-color: var(--color-primary, #673AB7);
    color: white;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--color-primary, #673AB7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contact {
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .footer-contact li {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .footer-social {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}