/* ============================================= */
/* --- STYLES POUR LA PAGE "À PROPOS" --- */
/* ============================================= */

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.about-intro .page-description {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.studios-list-section {
    max-width: 1100px; /* Section plus large */
    margin: 0 auto;
}

.studio-item {
    display: flex;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e7eb; /* Séparateur simple */
    align-items: stretch; /* Force les colonnes à avoir la même hauteur */
}

.studio-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.studio-item-image {
    width: 300px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f4f4f5;
}

.studio-item-image img {
    width: 100%;
    height: 100%; /* L'image remplit le conteneur qui s'étire */
    object-fit: cover;
}

.studio-item-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.studio-item-content {
    flex-grow: 1;
}

.studio-item-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #18181B;
}

.studio-item-description {
    color: #71717A;
    line-height: 1.6;
    margin-bottom: 30px;
}

.studio-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.studio-contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3f3f46;
}
.studio-contact-info .info-item svg {
    color: #8B5CF6;
    flex-shrink: 0;
}
.studio-contact-info .info-item a {
    color: #3f3f46;
    transition: color 0.2s;
}
.studio-contact-info .info-item a:hover {
    color: #8B5CF6;
}

.studio-item-footer {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
}

.studio-item-footer .footer-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.studio-item-footer h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #18181B;
}

.status-badge {
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 12px;
}
.status-badge.status-open {
    background-color: #dcfce7;
    color: #166534;
}
.status-badge.status-closed {
    background-color: #fee2e2;
    color: #991b1b;
}

.exception-notice {
    font-size: 0.85rem;
    color: #991b1b;
    background-color: #fee2e2;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 0;
    margin-bottom: 15px;
}


.studio-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    display: grid;
    grid-auto-flow: column; /* Remplit d'abord les colonnes */
    grid-template-rows: repeat(4, auto); /* Crée 4 lignes pour répartir les 7 jours */
    gap: 5px 25px;
}
.studio-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    color: #71717A;
}
.studio-hours-list li.today {
    color: #18181B;
    font-weight: bold;
}
.studio-hours-list .closed {
    color: #b91c1c;
    font-weight: bold;
}

/* --- Responsive pour la page "À propos" --- */
@media (max-width: 800px) {
    .about-intro, .studios-list-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .studio-item {
        flex-direction: column;
        gap: 25px;
    }
    .studio-item-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .studio-hours-list {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-template-rows: none;
    }
}
