/**
 * Footer Styles
 * Napul'è Restaurant Theme
 *
 * @package Napule_Restaurant
 */

.site-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-4xl) 0 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column */
.footer-column h3 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-heading);
}

/* Footer Contact */
.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-list li {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-info-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.footer-info-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-info-list a:hover {
    color: var(--color-white);
}

/* Footer Hours */
.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xs) 0;
    line-height: 1.6;
}

.footer-hours-list li span:first-child {
    font-weight: 500;
    min-width: 140px;
}

.footer-hours-list li span:last-child {
    text-align: right;
}

.footer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* Footer Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: var(--spacing-sm);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--color-white);
    padding-left: var(--spacing-xs);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    margin: var(--spacing-xs) 0;
}

.footer-bottom p:first-child {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md) var(--spacing-lg);
    }
    
    .footer-menu li {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: var(--spacing-3xl) 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        padding-bottom: var(--spacing-2xl);
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-links {
        grid-column: auto;
    }
    
    .footer-menu {
        display: block;
    }
    
    .footer-menu li {
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-hours-list li {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: center;
    }
    
    .footer-hours-list li span:first-child {
        min-width: auto;
    }
    
    .footer-hours-list li span:last-child {
        text-align: center;
        padding-left: 0;
    }
    
    .footer-info-list li {
        font-size: var(--font-size-sm);
        justify-content: center;
        text-align: left;
    }
    
    .footer-bottom {
        padding: var(--spacing-lg) 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: var(--font-size-lg);
    }
    
    .footer-content {
        gap: var(--spacing-xl);
    }
}
