/* Footer-styles */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p,
.footer-col ul {
    color: #aaa;
    line-height: 1.8;
}

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

.footer-menu li {
    margin-bottom: 10px;
}

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

.footer-menu a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.opening-hours span {
    color: #fff;
}

/* Sosiaalisen median ikonit */
.footer-social {
    margin-top: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #aaa;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

/* Responsiivisuus */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .opening-hours li {
        justify-content: center;
        gap: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
}