﻿/* =====================================================
   FOOTER.CSS - Footer Styles
   ===================================================== */

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: #0a0a0a;
    color: #999;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3,
.footer-contact h3,
.footer-hours h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.footer-info p,
.footer-contact p,
.footer-hours p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
