/* Styles pour les heures d'ouverture */
.hours-container {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(165, 42, 42, 0.1));
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hours-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1513530534585-c7b1394c6d51?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.hours-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.hours-title {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hours-title .material-icons {
    margin-right: 0.5rem;
    color: var(--accent-color);
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hours-detail {
    margin: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.hours-time {
    font-weight: 600;
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hours-container:hover .hours-time {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
}

/* Styles spécifiques pour le footer */
footer .hours-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-color: rgba(212, 175, 55, 0.7);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

footer .hours-title {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

footer .hours-detail {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

footer .hours-detail:last-child {
    border-bottom: none;
}

footer .hours-time {
    color: var(--accent-color);
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hours-container {
        padding: 1rem;
    }
    
    .hours-title {
        font-size: 1.1rem;
    }
    
    .hours-detail {
        font-size: 1rem;
    }
}