/* Hero Horaires */
.hero-horaires {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #03a0e1 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.hero-horaires h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-horaires p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Current Status */
.current-status {
    padding: 60px 0;
    background: #f5f5f5;
}

.status-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.status-card.ouvert {
    border-color: #27ae60;
}

.status-card.ferme {
    border-color: #e74c3c;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.status-icon {
    flex-shrink: 0;
}

.status-content h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.status-hours {
    font-size: 1.5rem;
    color: #03a0e1;
    font-weight: 600;
    margin-bottom: 15px;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
}

.status-badge.ouvert {
    background: #d4edda;
    color: #155724;
}

.status-badge.ferme {
    background: #f8d7da;
    color: #721c24;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.schedule-card {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #03a0e1, #0286c2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.schedule-card:hover::before {
    transform: scaleX(1);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #03a0e1;
}

.schedule-card.today {
    border-color: #03a0e1;
    border-width: 3px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.schedule-card.today::before {
    transform: scaleX(1);
}

.schedule-card.closed {
    opacity: 0.6;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.day-header h3 {
    font-size: 1.4rem;
    color: #000;
    font-weight: 700;
}

.today-badge {
    background: #03a0e1;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-slot {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: #e8f4f8;
}

.slot-icon {
    font-size: 1.5rem;
}

.slot-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.slot-time {
    font-weight: 700;
    color: #03a0e1;
    font-size: 1.1rem;
}

.time-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.closed-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 10px;
}

.closed-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.closed-text {
    font-size: 1.2rem;
    color: #999;
    font-weight: 600;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-link {
    color: #03a0e1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: #0286c2;
    letter-spacing: 0.5px;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: white;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-info h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
    font-weight: 700;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #03a0e1;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: #000;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.detail-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.detail-item a {
    color: #03a0e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: #0286c2;
}

.location-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f5f5f5, #e8e8e8);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.faq-question h3 {
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
}

.faq-answer {
    color: #666;
    line-height: 1.8;
    padding-left: 45px;
}

/* Responsive */
@media (max-width: 968px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-horaires h1 {
        font-size: 2.5rem;
    }

    .status-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .status-content h2 {
        font-size: 1.5rem;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-horaires h1 {
        font-size: 2rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}