/* --- Footer Styles --- */
.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-family: 'Cinzel', serif;
    color: #111;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-column p,
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-column .social-media-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.footer-column .social-media-links a:hover {
    color: var(--gold);
}

.footer-column.contact a i {
    margin-right: 10px;
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.footer-bottom .developer-credit {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #888;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-column h4 {
        display: block;
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-column .social-media-links {
        margin-top: 10px;
    }

    .footer-column .social-media-links a {
        margin: 0 10px;
    }
}
