/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


.elementor-mark-required .elementor-field-label:after {
    color: var( --e-global-color-primary );
    content: "*";
    padding-inline-start: .2em;
}

/* Style de base pour les listes non ordonnées */
ul {
    font-size: 16px;
    line-height: 1.5; /* 24px, soit 1.5× la taille de police */
    padding-left: 1.25rem; /* 20px, légèrement plus petit que le double de l'indentation standard */
    margin: 0 0 1.5rem 0; /* 24px en haut et en bas */
    list-style-type: disc; /* Points pleins */
    color: #333; /* Couleur de texte légèrement adoucie */
  }
  
  /* Style pour les éléments de liste */
  ul > li {
    margin-bottom: 0.75rem; /* 12px d'espace entre les éléments */
    padding-left: 0.5rem; /* 8px de retrait pour améliorer la lisibilité */
  }
  
  /* Supprimer la marge du dernier élément pour éviter l'excès d'espace */
  ul > li:last-child {
    margin-bottom: 0;
  }
  
  /* Style pour les listes imbriquées */
  ul ul {
    margin: 0.75rem 0 0; /* Espace uniquement en haut des listes imbriquées */
    padding-left: 1.5rem; /* 24px d'indentation pour les listes imbriquées */
  }
  
  /* Variante avec une autre forme de puces */
  ul.circle {
    list-style-type: circle; /* Points vides */
  }
  
  /* Variante avec des puces carrées */
  ul.square {
    list-style-type: square; /* Points carrés */
  }
  
  /* Classe facultative pour des listes plus compactes */
  ul.compact > li {
    margin-bottom: 0.375rem; /* 6px, espace plus compact */
  }
  
  /* Classe facultative pour des listes plus espacées */
  ul.spacious > li {
    margin-bottom: 1rem; /* 16px, espace plus généreux */
  }


  .event-info {
    border-top:2px solid #EBEBEB;
    color:#484848;
    display: flex;
    flex-direction: column;
    font-size:16px;
    gap: 5px;
    margin-top:16px;
    padding-top:16px;
}

 .event-info .event-info-row {
    align-items: center!important;
    display: flex!important;
    flex-direction:row!important;
    gap:10px!important;
}

.event-info .event-info-row .event-info-icon {
    color: #484848;
    font-size: 15px;
    width: 15px;
    height: 15px;
}

.event-info .event-info-row .event-info-value {
    color: #484848;
    font-size: 16px;
}

.flaminem-breadcrumb {
    margin: 1rem 0;
    padding: 0.5rem 0;
}

.flaminem-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.flaminem-breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.flaminem-breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #999;
}

.flaminem-breadcrumb a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.flaminem-breadcrumb a:hover {
    text-decoration: underline;
}

.flaminem-breadcrumb .current {
    color: #555;
    font-weight: 500;
}

@media (max-width: 768px) {
    .flaminem-breadcrumb {
        font-size: 0.8rem;
    }
}

.event-info-container {
    display: flex;
    background-color: #fff;
    margin: auto;
    max-width: 100%;
    overflow: hidden;
}

.event-image-column {
    flex: 0 0 40%;
    position: relative;
}

.event-thumbnail {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.event-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-thumbnail:hover img {
    transform: scale(1.05);
}

.event-details-column {
    flex: 0 0 60%;
    padding: 25px;
}

.event-info-title {
    font-size: 24px!important;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #e6e1f0;
    padding-bottom: 12px;
}

.event-info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-info-item {
    display: flex;
    align-items: center;
}

.event-info-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #6a5687;
    flex-shrink: 0;
}

.event-info-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #6a5687;
}

.event-info-content {
    flex: 1;
}

.event-info-value {
    font-size: 16px;
    color: #333;
}

.event-url-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #e6e1f0;
    color: #6a5687;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.event-url-button:hover {
    background-color: #ebe7f2;
}

.event-url-button .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .event-info-container {
        flex-direction: column;
    }
    
    .event-image-column {
        flex: 0 0 200px;
    }
    
    .event-details-column {
        flex: 1;
    }
}

.intervenants-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
}

.intervenant-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intervenant-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
}

.intervenant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intervenant-info {
    flex-grow: 1;
}

.intervenant-nom {
    margin: 0 0 5px;
    font-size: 18px;
    color: #333;
}

.intervenant-fonction {
    margin: 0 0 8px;
    font-size: 14px;
    color: #666;
}

.intervenant-statut {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.intervenant-statut.interne {
    background-color: #e6e1f0;
    color: #6a5687;
}

.intervenant-statut.externe {
    background-color: #e6e6e6;
    color: #666666;
}

@media (max-width: 480px) {
    .intervenant-item {
        flex-direction: column;
        text-align: center;
    }
    
    .intervenant-photo {
        margin: 0 auto 15px;
    }
}

.event-info-container h1{
    font-weight: 500!important;
    line-height: 32px!important;
}