/* Footer CSS - Footer styles */

.site-footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-navigation h3 {
    color: #fffad5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: #fffad5;
}

.site-info {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 2rem;
    margin-top: 2rem;
}

.site-info p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 