/* Programme.css - Style pour le programme du colloque */

.programme-container {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

.programme-title {
    text-align: center;
    color: #2c3e50;
    text-transform: uppercase;
    font-family: "Poppins", "Playfair Display", serif;
    font-size: 2.5em;
    font-weight:200;
    height: auto;
    width: 80%;
    margin: 10px auto;
    border-bottom: 2px solid black;
    line-height: 1.2;
}

/* Sections par jour */
.day-section {
    display: flex;
    margin-bottom: 50px;
    overflow: hidden;
}

.day-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    transform: rotate(180deg);
    height: 150px;
    background-color:  #8b6f47; 
    color: white;
    text-align: center;
    margin: 10px;
    margin-left: 0;
    font-weight: 100;
    font-size: 1em;
    font-family: "Playfair Display", "Times New Roman", serif;
}

/* Sessions */
.session {
    padding: 20px;
    background-color: #f5f3f0;
}

/* Créneaux horaires */
.time-slot {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.time-slot:last-child {
    margin-bottom: 0;
}



/* Horaires */
.time {
    padding: 0 0px;
    min-width: 120px;
    text-align: center;
    font-size: 0.9em;
    flex-shrink: 0;
}
 

/* Événements */
.event {
    flex: 1;
    padding-left: 20px;
}

.event h3 {
    align-items: center;
    color: #2c3e50;
    font-size: 1em;
}
 

/* Intervenants */
.speaker {
    font-weight: bold;
    margin: 5px 0;
}

/* Titres de présentations */
.title {
    font-style: italic;
    color: #34495e;
    margin: 5px 0;
    font-size: 0.95em;
}

/* Lieux */
.location {
    color: #7f8c8d;
    font-size: 0.9em;
    font-weight: normal;
    line-height: 1.4;
}
 

/* Présentations multiples */
.presentations {
    margin: 10px 0;
}

.presentation {
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 5px;
}

.presentation .speaker {
    font-size: 0.95em;
    margin-bottom: 3px;
}

.presentation .title {
    font-size: 0.9em;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .programme-container {
        padding: 0;
    }
    
    .programme-title {
        font-size: 2em;
    }
    
    .time-slot {
        flex-direction: column;
        border-left: none;
        border-top: 1px solid gray;
        padding: 15px 0;
    }
     
    .session :first-child{
        border-top:none;
    }
    
    .time {
        margin-bottom: 10px;
        margin-right: 0;
        align-self: flex-start;
    }
    
    .day-section{
        display: block;
    }

    .day-title { 
        padding: 15px;
        writing-mode:initial;
        transform: none;
        height: auto;
        width:100%
    }
}


/* Impression */
@media print {
    .programme-container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .day-section {
        break-inside: avoid;
        margin-bottom: 30px;
    }
    
    .time-slot {
        break-inside: avoid;
    }
}
