/* ==========================================
   PAGE DOJO AFFILIES
   Préfixe CSS : doj-
========================================== */


/* Conteneur principal */

.doj-page {

    max-width: 1440px;

    margin: 0 auto 20px;

    background-color: #fff;

    box-shadow:
        -10px 0px 10px -10px rgba(0,0,0,0.45),
         10px 0px 10px -10px rgba(0,0,0,0.45);

}



/* Zone intérieure */

.doj-container {

    padding: 30px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #333;

    line-height: 1.6;

}



/* Titre principal */

.doj-title {

    text-align: center;

    margin: 0 0 40px;

    font-size: 30px;

    font-weight: 700;

    color: #333;

}





/* Liste des dojos */

.doj-list {

    display: flex;

    flex-direction: column;

    gap: 40px;

}





/* Carte dojo */

.doj-item {

    padding: 30px;

    background-color: #fafafa;

    border-radius: 10px;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.08);

}





/* Nom du dojo */

.doj-name {

    text-align: center;

    margin: 0 0 30px;

    font-size: 26px;

    font-weight: 700;

    color: #b8860b;

}





/* Description */

.doj-description {

    overflow: hidden;

    font-size: 17px;

    line-height: 1.6;

    text-align: justify;

}



.doj-description p {

    margin: 0;

}





/* Image dojo */

.doj-image {

    float: left;

    width: 220px;

    max-width: 100%;

    margin:

        0 25px 15px 0;

    border-radius: 8px;

}





/* Bloc contact */

.doj-contact {

    margin-top: 35px;

    padding: 20px;

    background-color: #fff;

    border-left:

        4px solid #b8860b;

    font-size: 18px;

}



.doj-contact p {

    margin: 10px 0;

}



.doj-contact strong {

    font-weight: 700;

}





/* Liens téléphone et mail */

.doj-contact a {

    color: #174a70;

    text-decoration: none;

}



.doj-contact a:hover {

    text-decoration: underline;

}





/* Horaires */

.doj-hours {

    margin-top: 35px;

}



.doj-hours h3 {

    margin-bottom: 15px;

    font-size: 22px;

    font-weight: 700;

    color: #555;

}





/* Tableau horaires */

.doj-table {

    width: 100%;

    border-collapse: collapse;

    margin-top: 10px;

    font-size: 18px;

}



.doj-table td {

    padding: 12px 15px;

    border-bottom:

        1px solid #ddd;

}



.doj-table tr:nth-child(even) {

    background-color: #f3f3f3;

}





/* Jour */

.doj-day {

    width: 20%;

    font-weight: 700;

}





/* Horaire */

.doj-hour {

    width: 25%;

    font-weight: 600;

}





/* Paragraphes généraux */

.doj-item p {

    margin-bottom: 15px;

}





/* Séparation entre éléments */

.doj-item hr {

    border: none;

    border-top:

        1px solid #ddd;

    margin: 35px 0;

}





/* ==========================================
   RESPONSIVE MOBILE
========================================== */


@media screen and (max-width: 700px) {


    .doj-container {

        padding: 15px;

    }



    .doj-title {

        font-size: 24px;

    }



    .doj-item {

        padding: 20px;

    }



    .doj-name {

        font-size: 22px;

    }



    .doj-description {

        font-size: 16px;

        text-align: left;

    }



    .doj-image {

        float: none;

        display: block;

        width: 180px;

        margin:

            0 auto 20px;

    }



    .doj-contact {

        font-size: 16px;

        padding: 15px;

    }



    .doj-table {

        font-size: 15px;

    }



    .doj-table td {

        display: block;

        width: 100%;

        padding: 8px;

    }



    .doj-table tr {

        display: block;

        margin-bottom: 15px;

        border-bottom:

            1px solid #ddd;

    }



}