/* =========================================================
   Page Nos conférences — Tany Mena
   Hero, planning hebdo, événements mensuels, intervenants,
   bandeau IRL, CTA prochaine session
========================================================= */

/* ----- Icônes SVG (charte ligne, currentColor) ----- */
.tm-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.tm-icon-inline {
    width: 1.05em;
    height: 1.05em;
    margin-right: 6px;
    margin-top: -2px;
}

/* ----- Hero ----- */
.tm-conf-hero {
    position: relative;
    padding: 120px 0 100px;
    color: #fff;
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-bottom: 40px;
}

.tm-conf-hero__eyebrow {
    font-family: var(--af-ff-gotham-extra-bold);
    color: #c4826c;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.tm-conf-hero__title {
    font-family: var(--af-ff-gotham-extra-bold);
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 auto 22px;
    max-width: 900px;
    letter-spacing: 0.5px;
}

.tm-conf-hero__lead {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    max-width: 760px;
    margin: 0 auto 30px;
}

.tm-conf-hero__lead strong {
    color: #fff;
    font-size: 17.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.tm-conf-hero__ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ----- Eyebrows ----- */
.tm-conf__eyebrow {
    font-family: var(--af-ff-gotham-extra-bold);
    color: #c4826c;
    letter-spacing: 2.5px;
    font-size: 11.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tm-conf__eyebrow--light {
    color: #e8c7ab;
}

/* ----- Système semaine (planning hebdo) ----- */
.tm-conf-day {
    background: #fff;
    border: 1px solid #efeae3;
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    box-shadow: 0 8px 22px rgba(96,45,3,0.06);
    transition: box-shadow 250ms ease, transform 250ms ease;
}

.tm-conf-day:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(96,45,3,0.10);
}

.tm-conf-day--evening {
    background: linear-gradient(180deg, #fbf8f4 0%, #fff 100%);
    border-color: #e8d8c4;
}

.tm-conf-day__header {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #efeae3;
    text-align: center;
}

.tm-conf-day__name {
    font-family: var(--af-ff-gotham-extra-bold);
    color: var(--af-theme-primary);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.tm-conf-day__tag {
    font-family: var(--af-ff-gotham-extra-bold);
    color: #c4826c;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tm-conf-slot {
    display: flex;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px dashed #e3dbc9;
}

.tm-conf-slot:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.tm-conf-slot__time {
    flex-shrink: 0;
    width: 92px;
    font-family: var(--af-ff-gotham-extra-bold);
    color: var(--af-theme-primary);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tm-conf-slot__time .tm-icon {
    color: #c4826c;
    width: 14px;
    height: 14px;
}

.tm-conf-slot__title {
    font-family: var(--af-ff-gotham-extra-bold);
    color: var(--af-theme-primary);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 5px;
}

.tm-conf-slot__text {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(0,0,0,0.7);
    margin: 0;
}

/* ----- Événements mensuels ----- */
.tm-conf-event {
    background: #fff;
    border: 1px solid #efeae3;
    border-radius: 12px;
    padding: 32px 26px 28px;
    height: 100%;
    transition: transform 250ms ease, box-shadow 250ms ease;
    box-shadow: 0 6px 18px rgba(96,45,3,0.05);
}

.tm-conf-event:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(96,45,3,0.10);
}

.tm-conf-event__icon {
    font-size: 36px;
    color: #c4826c;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tm-conf-event__icon .tm-icon {
    stroke-width: 1.7;
}

.tm-conf-event__when {
    font-family: var(--af-ff-gotham-extra-bold);
    color: #c4826c;
    font-size: 11.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tm-conf-event__title {
    font-family: var(--af-ff-gotham-extra-bold);
    color: var(--af-theme-primary);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
    line-height: 1.3;
}

.tm-conf-event__text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0,0,0,0.7);
    margin: 0;
}

/* ----- Intervenants phares ----- */
.tm-conf-speaker {
    text-align: center;
    padding: 0 12px;
}

.tm-conf-speaker__photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 12px 28px rgba(96,45,3,0.16);
}

.tm-conf-speaker__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tm-conf-speaker__name {
    font-family: var(--af-ff-gotham-extra-bold);
    color: var(--af-theme-primary);
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 4px;
}

.tm-conf-speaker__role {
    font-family: var(--af-ff-gotham-extra-bold);
    color: #c4826c;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tm-conf-speaker__text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
    max-width: 280px;
    margin: 0 auto;
}

/* ----- Événements IRL (bandeau sombre) ----- */
.tm-conf-irl {
    position: relative;
    padding: 90px 0 100px;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.tm-conf-irl__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.tm-conf-irl__title {
    font-family: var(--af-ff-gotham-extra-bold);
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.25;
}

.tm-conf-irl__lead {
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

.tm-conf-irl__card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    padding: 32px 26px;
    text-align: center;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    height: 100%;
    transition: all 250ms ease;
}

.tm-conf-irl__card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-4px);
}

.tm-conf-irl__card-icon {
    font-size: 38px;
    color: #fff;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tm-conf-irl__card-icon .tm-icon {
    stroke-width: 1.6;
}

.tm-conf-irl__card h3 {
    font-family: var(--af-ff-gotham-extra-bold);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.tm-conf-irl__card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.86);
    margin: 0;
}

/* ----- CTA final ----- */
.tm-conf-cta {
    background: #fbf8f4;
}

.tm-conf-cta__lead {
    max-width: 640px;
    margin: 0 auto 28px;
    color: rgba(0,0,0,0.72);
}

.tm-conf-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.tm-conf-cta__note {
    font-size: 12.5px;
    color: rgba(0,0,0,0.55);
    margin: 0;
    font-style: italic;
}

/* ----- Boutons clairs (sur fond sombre) ----- */
.tm-btn--light {
    color: #fff !important;
    border-color: rgba(255,255,255,0.5) !important;
    background: transparent;
}

.tm-btn--light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff !important;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .tm-conf-hero {
        padding: 80px 0 70px;
    }
    .tm-conf-hero__title {
        font-size: 28px;
    }
    .tm-conf-day {
        padding: 26px 22px;
    }
    .tm-conf-slot {
        flex-direction: column;
        gap: 6px;
    }
    .tm-conf-slot__time {
        width: auto;
    }
    .tm-conf-speaker__photo {
        width: 130px;
        height: 130px;
    }
    .tm-conf-irl__title {
        font-size: 24px;
    }
}
