/* Footer Styles */
footer {
    background-color: var(--primary-black);
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--gold);
}

.footer-contact p, .footer-hours p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.footer-hours h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-links-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-links-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links-column ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--primary-black);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-legal a {
    color: var(--light-gray);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
