@charset "UTF-8";
:root {
  --mc-breakpoint-xs:             $breakpoint-xs;
  --mc-breakpoint-sm:             $breakpoint-sm;
  --mc-breakpoint-lg:             $breakpoint-lg;
  --mc-breakpoint-md:             $breakpoint-md;
  --mc-breakpoint-xl:             $breakpoint-xl;
  --mc-breakpoint-xxl:            $breakpoint-xxl;
  --mc-breakpoint-xxxl:           $breakpoint-xxxl;
  --mc-breakpoint-xxxxl:          $breakpoint-xxxxl;
  --mc-global-gap:                1rem;
  --mc-global-max-width:          1600px;
  --mc-global-width:              95%;
  --mc-border-color:              rgba(0,0,0,0.1);
  --mc-border-style:              solid;
  --mc-border-width:              1px;
  --mc-border-radius:             5px;
  --mc-color-light:               #fff;
  --mc-color-dark:                #000;
  --mc-color-1:                   #3984b5;
  --mc-color-2:                   #c6f0a8;
  --mc-color-3:                   #ffc766;
  --mc-color-4:                   #00195d;
  --mc-font-weight-regular:       400;
  --mc-font-weight-bold:          700;
  --mc-fluid-font-size:           clamp(14px,  1.2vw + 0.5rem, 18px );
  --mc-font-size-xxs:             clamp(0.65rem, 0cqi, 0.75rem);
  --mc-font-size-xs:              clamp(0.75rem, 0cqi, 0.875rem);
  --mc-font-size-sm:              var(--mc-fluid-font-size);
  --mc-font-size-sm:              clamp(0.875rem, 1cqi, 1.1rem);
  --mc-font-size-md:              clamp(1.3rem, 1cqi, 2.2rem);
  --mc-font-size-lg:              clamp(1.5rem, 2cqi, 2.6rem);
  --mc-font-size-xl:              clamp(1.8rem, 3cqi, 2.9rem);
  --mc-font-size-xxl:             clamp(2.1rem, 4cqi, 3rem);
  --mc-font-size-xxxl:            clamp(2.2rem, 8cqi, 3.7rem);
  --mc-grid-min-width:            20rem;
  --mc-grid-row-gap:              calc(var(--mc-global-gap) * 1);
  --mc-grid-column-gap:           calc(var(--mc-global-gap) * 1);
  --mc-grid-image-aspect-ratio:   4/3;
  --mc-single-row-gap:            var(--mc-grid-row-gap);
  --mc-single-column-gap:         var(--mc-grid-column-gap);
  --mc-single-image-aspect-ratio: 3/4;
}
/* Functions */
/* Mixins */
/* Responsiveness */
@media print {
  #main-header, #main-footer, #mc-footer {
    display: none !important;
  }
}
#main-header, .entry-content, .et_pb_section {
  container-type: inline-size;
}
.et_pb_row, .container {
  width: var(--mc-global-width);
}
body {
  font-size: var(--mc-fluid-font-size);
}
sub, sup {
  font-size: 0.7em;
  top: 0.3em;
  left: -0.3em;
}
h1 sub, h1 sup, h2 sub, h2 sup, h3 sub, h3 sup, h4 sub, h4 sup, h5 sub, h5 sup, h6 sub, h6 sup {
  left: -0.3em;
}
#footer-bottom {
  font-size: var(--mc-font-size-xs);
}
#footer-bottom .et_pb_column {
  display: flex;
}
@media (min-width: 61.3125rem) {
  #footer-bottom .et_pb_column {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
#footer-links {
  margin-bottom: 0;
  margin-right: auto;
}
@media (min-width: 61.3125rem) {
  #footer-links .copyright {
    margin-right: 1rem;
  }
  #footer-links .copyright::after {
    content: "—";
    margin-left: 1rem;
  }
}
#footer-links a {
  margin-right: 1rem;
}
@media (min-width: 61.3125rem) {
  #footer-social {
    margin-left: auto;
  }
  #footer-social a {
    margin-left: 1rem;
  }
}
.grid-image, .single-image {
  height: auto;
  background: #ebebeb;
  overflow: hidden;
  border-radius: var(--mc-border-radius);
  width: 100%;
}
.grid-image img, .single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.boxed {
  padding: calc(var(--mc-global-gap) * 2);
}
.boxed img {
  object-fit: contain;
  object-position: center;
  border-radius: var(--mc-border-radius);
  max-width: 100%;
  max-height: 100%;
}
.mc-button {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  line-height: 1em;
  padding: 0.75em 1em;
  color: var(--mc-color-dark);
  border-radius: var(--mc-border-radius);
  border: var(--mc-border-width) var(--mc-border-style) var(--mc-color-dark);
}
.mc-button.light {
  color: var(--mc-color-light);
  border-color: var(--mc-color-light);
}
.mc-grid-wrapper {
  container-type: inline-size;
}
.mc-grid {
  container-type: inline-size;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--mc-grid-min-width), 1fr));
  row-gap: calc(var(--mc-grid-row-gap) * 2);
  column-gap: calc(var(--mc-grid-row-gap) * 2);
}
.grid-item {
  container-type: inline-size;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--mc-border-radius);
  border: 1px solid #ccc;
}
.grid-image {
  aspect-ratio: var(--mc-grid-image-aspect-ratio);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.grid-content {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2em;
}
.grid-header, .grid-footer {
  color: set-color(#000, 0.5);
  font-size: var(--mc-font-size-xs);
}
.grid-header {
  padding-bottom: calc(var(--mc-global-gap) * 0.5);
}
.footer-extra {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}
.grid-date {
  color: rgba(0, 0, 0, 0.5);
}
.grid-category {
  margin-left: 0.3em;
}
.grid-category::before {
  content: "—";
  display: inline-block;
  margin-right: 0.5em;
}
.grid-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.grid-footer {
  margin-top: auto;
  padding-top: var(--mc-global-gap);
  display: flex;
  flex-wrap: wrap;
}
.grid-title {
  font-weight: var(--mc-font-weight-regular);
  font-size: var(--mc-font-size-xl);
  line-height: 1.2em;
}
.grid-link {
  font-size: var(--mc-font-size-sm);
  line-height: 1em;
  border-radius: var(--mc-border-radius);
}
.pods-pagination-paginate, .wp-pagenavi {
  display: flex;
  flex-direction: row;
  margin-top: 1em;
}
.pods-pagination-paginate .page-numbers, .pods-pagination-paginate .pages, .pods-pagination-paginate span, .pods-pagination-paginate a, .wp-pagenavi .page-numbers, .wp-pagenavi .pages, .wp-pagenavi span, .wp-pagenavi a {
  all: unset;
  color: var(--mc-color-dark);
  margin-right: 1rem;
}
.pods-pagination-paginate .page-numbers.current, .pods-pagination-paginate .pages.current, .pods-pagination-paginate span.current, .pods-pagination-paginate a.current, .wp-pagenavi .page-numbers.current, .wp-pagenavi .pages.current, .wp-pagenavi span.current, .wp-pagenavi a.current {
  color: var(--mc-color-1);
}
.pods-pagination-paginate .page-numbers.prev::before, .pods-pagination-paginate .pages.prev::before, .pods-pagination-paginate span.prev::before, .pods-pagination-paginate a.prev::before, .wp-pagenavi .page-numbers.prev::before, .wp-pagenavi .pages.prev::before, .wp-pagenavi span.prev::before, .wp-pagenavi a.prev::before {
  font-family: "Font Awesome 5 Pro", sans-serif;
  content: "";
  display: inline-block;
  font-weight: "normal";
  font-size: 1em;
}
.pods-pagination-paginate .page-numbers.next::before, .pods-pagination-paginate .pages.next::before, .pods-pagination-paginate span.next::before, .pods-pagination-paginate a.next::before, .wp-pagenavi .page-numbers.next::before, .wp-pagenavi .pages.next::before, .wp-pagenavi span.next::before, .wp-pagenavi a.next::before {
  font-family: "Font Awesome 5 Pro", sans-serif;
  content: "";
  display: inline-block;
  font-weight: "normal";
  font-size: 1em;
}
.pods-pagination-paginate .page-numbers:hover, .pods-pagination-paginate .pages:hover, .pods-pagination-paginate span:hover, .pods-pagination-paginate a:hover, .wp-pagenavi .page-numbers:hover, .wp-pagenavi .pages:hover, .wp-pagenavi span:hover, .wp-pagenavi a:hover {
  cursor: pointer;
}
.pods-pagination-paginate .pages, .wp-pagenavi .pages {
  display: none;
}
.related-grid .mc-grid {
  --mc-grid-min-width: 100%;
}
.photo-gallery-grid .mc-grid {
  --mc-grid-min-width: 12.5%;
}
.single-item-header {
  padding: calc(var(--mc-global-gap) * 3) 0;
}
.single-item-header .container {
  container-type: inline-size;
}
.single-item-header .page-title {
  font-size: var(--mc-font-size-lg);
}
.single-wrapper {
  container-type: inline-size;
  width: var(--mc-global-width);
  max-width: var(--mc-global-max-width);
  margin: 0 auto;
  /*
    .single-title {
      font-size: var(--mc-font-size-xl);
      font-weight: var(--mc-font-weight-bold);
    }
    */
}
.single-wrapper .single-item {
  container-type: inline-size;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: calc(var(--mc-single-row-gap) * 2);
  column-gap: calc(var(--mc-single-row-gap) * 2);
  max-width: var(--mc-global-max-width);
  margin: 0 auto;
}
@container (min-width: 61.3125rem) {
  .single-wrapper .single-item:not(.full-width) {
    grid-template-columns: 2fr 1fr;
  }
}
.single-wrapper .single-image {
  aspect-ratio: var(--mc-single-image-aspect-ratio);
}
.single-wrapper .single-side {
  display: grid;
  align-items: start;
  align-self: start;
  justify-items: start;
}
.single-wrapper .single-content {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
}
.single-wrapper .single-header {
  container-type: inline-size;
  color: set-color(#000, 0.5);
  margin-bottom: calc(var(--mc-global-gap) * 1);
}
.single-wrapper .single-event-date {
  display: none;
}
.single-wrapper .single-footer {
  font-size: var(--mc-font-size-sm);
  padding: calc(var(--mc-global-gap) * 1);
  margin-top: auto;
}
.single-wrapper .single-footer span {
  display: inline-block;
  margin-right: 1em;
}
.single-wrapper .single-footer a {
  color: var(--mc-color-dark);
}
.single-related-items-wrapper {
  width: 100%;
}
.single-related-items-wrapper .container {
  width: 100%;
  margin: 0;
}
.related-items-heading {
  font-size: var(--mc-font-size-md);
  font-weight: var(--mc-font-weight-bold);
  margin: calc(var(--mc-global-gap) * 2) 0;
}
.filters {
  display: grid;
  grid-template-columns: 2fr 1fr auto auto;
  gap: 20px;
}
.filters .filter-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.filters .reset {
  align-items: flex-end;
}
.ginner-container .gslide-description .gslide-title {
  margin-bottom: 0;
  font-weight: var(--mc-font-weight-bold);
}
.ginner-container .gslide-description .gslide-title:last-child {
  padding-bottom: 0;
}
.ginner-container .gslide-media {
  overflow: hidden !important;
}
.ginner-container.desc-bottom .gslide-media {
  border-top-left-radius: var(--mc-border-radius);
  border-top-right-radius: var(--mc-border-radius);
}
.ginner-container.desc-bottom .gslide-description {
  border-bottom-left-radius: var(--mc-border-radius);
  border-bottom-right-radius: var(--mc-border-radius);
}
.ginner-container.desc-left .gslide-media {
  border-top-right-radius: var(--mc-border-radius);
  border-bottom-right-radius: var(--mc-border-radius);
}
.ginner-container.desc-left .gslide-description {
  border-top-left-radius: var(--mc-border-radius);
  border-bottom-left-radius: var(--mc-border-radius);
}
.ginner-container.desc-right .gslide-media {
  border-top-left-radius: var(--mc-border-radius);
  border-bottom-left-radius: var(--mc-border-radius);
}
.ginner-container.desc-right .gslide-description {
  border-top-right-radius: var(--mc-border-radius);
  border-bottom-right-radius: var(--mc-border-radius);
}
.mc-text-defaults h2, .mc-text-defaults h3, .mc-text-defaults h4, .mc-text-defaults h5, .mc-text-defaults h6 {
  font-weight: var(--mc-font-weight-bold);
}
.mc-text-defaults .single-title {
  font-size: var(--mc-font-size-xxxl);
}
.mc-text-defaults h2 {
  font-size: var(--mc-font-size-xxl);
}
.mc-text-defaults h3 {
  font-size: var(--mc-font-size-xl);
}
.mc-text-defaults h4 {
  font-size: var(--mc-font-size-lg);
}
.mc-text-defaults h5 {
  font-size: var(--mc-font-size-md);
}
.mc-text-defaults h6 {
  font-size: var(--mc-font-size-sm);
}
header#main-header {
  display: none;
}
/* --- MASTER CSS FINAL - BLUE LOGISTICS 2-COLUMNS --- */
:root {
  --main-blue: #009ade;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --font-lato: "Lato", sans-serif;
}
/* --- CONTENEUR GLOBAL --- */
.hero-nexbit {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  padding: 0px 0px 80px 0px;
  box-sizing: border-box;
  font-family: var(--font-lato);
  color: #fff !important;
}
.inner-banner-content {
  width: 100%;
  max-width: 1080px;
  margin: auto auto;
}
/* --- LOGOS --- */
.hero-logos-top {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  align-items: center;
}
.hero-logos-top img {
  height: 55px;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}
.hero-logos-top a:hover img {
  opacity: 0.7;
  transform: translateY(-2px);
}
/* --- TITRES --- */
.hero-title-main {
  font-size: clamp(3rem, 9vw, 5rem);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #009ade !important;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff !important;
  text-transform: uppercase;
}
.hero-divider {
  width: 50px;
  height: 3px;
  background: var(--main-blue);
  margin-bottom: 50px;
}
/* --- GRILLE DU BAS (META GRID) --- */
.hero-meta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  /* Équilibre ajusté pour les 2 colonnes bleues */
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  overflow: hidden;
}
.hero-description-text {
  padding: 50px;
  font-size: 1.1rem;
  line-height: 1.6;
}
/* --- BLOC LOGISTIQUE BLEU (2 COLONNES) --- */
.hero-logistics-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--main-blue);
  padding: 50px 40px;
}
.hero-info-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Les deux colonnes When/Where */
  gap: 5px;
  margin-bottom: 40px;
}
.hero-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hero-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}
.hero-icon svg {
  fill: #ffffff;
  width: 100%;
  height: 100%;
}
.hero-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  color: #fff !important;
  margin-bottom: 5px;
  display: block;
}
.hero-value {
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #fff !important;
}
.hero-value span {
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.9;
}
/* --- BOUTON CTA --- */
.btn-nexbit {
  display: block;
  background: #ffffff;
  color: var(--main-blue) !important;
  padding: 18px 0;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
  border-radius: 2px;
}
.btn-nexbit:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* --- RESPONSIVE --- */
@media (max-width: 980px) {
  /* On garde 2 cols sur tablette */
  .hero-nexbit {
    padding: 40px 20px;
  }
  .hero-meta-grid {
    grid-template-columns: 1fr;
  }
  .hero-description-text {
    padding: 30px;
  }
  .hero-logistics-wrapper {
    padding: 40px 30px;
  }
  .hero-info-box {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  /* 1 col sur mobile étroit */
  .hero-info-box {
    grid-template-columns: 1fr;
  }
  .hero-title-main {
    font-size: 3rem;
  }
}
/* --- CONFIGURATION GLOBALE --- */
:root {
  --main-blue: #009ade;
  --dark-bg: #1a1a1a;
  --font-lato: "Lato", sans-serif;
}
.container-narrow {
  max-width: 1080px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--main-blue);
}
/* --- SECTION 1 : AGENDA (FOND CLAIR) --- */
.section-agenda {
  background: #ffffff;
  padding: 50px 0px;
  font-family: var(--font-lato);
}
.agenda-grid {
  display: flex;
  flex-direction: column;
}
.agenda-item {
  display: grid;
  /* On élargit un peu la colonne de gauche pour l'icône + l'heure */
  grid-template-columns: 240px 1fr;
  padding: 25px 0px;
  /* Padding ajusté pour l'équilibre */
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
  position: relative;
  background: transparent;
}
.agenda-item:hover {
  background: #ffffff;
  box-shadow: 10px 0 0px var(--main-blue) inset;
  padding-left: 45px;
  background-color: rgba(0, 154, 222, 0.05);
}
/* --- NOUVEAU : ALIGNEMENT ICÔNE + HEURE --- */
.agenda-time-column {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Espace entre l'horloge et l'heure */
}
.time-icon {
  width: 20px;
  height: 20px;
  fill: var(--main-blue);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.agenda-item:hover .time-icon {
  transform: rotate(20deg) scale(1.2);
  /* Petit effet dynamique au survol */
}
.agenda-time {
  font-weight: 900;
  color: var(--main-blue);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  white-space: nowrap;
}
.agenda-item:hover .agenda-time {
  transform: translateX(5px);
  /* Léger décalage vers la droite */
}
.agenda-desc {
  font-weight: 700;
  color: #333;
  font-size: 1.1rem;
}
.agenda-desc span {
  display: block;
  font-weight: 300;
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}
/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .agenda-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 20px;
  }
  .agenda-item:hover {
    padding-left: 30px;
  }
  .agenda-time-column {
    margin-bottom: 5px;
  }
}
/* --- SECTION 2 : SPEAKERS (FOND SOMBRE + ICONS) --- */
.section-speakers {
  padding: 50px 0px;
  font-family: var(--font-lato);
  color: #ffffff;
}
.section-speakers .section-title {
  color: #ffffff;
}
.speakers-intro {
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 50px;
}
.speakers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.speaker-card {
  position: relative;
  background: #ffffff;
  padding: 50px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 250px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-top: 4px solid transparent;
}
/* -- STYLE DE L'ICÔNE DANS LA CARTE -- */
.speaker-icon-wrapper {
  width: 45px;
  height: 45px;
  background: rgba(0, 154, 222, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.speaker-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: var(--main-blue);
}
/* -- HOVER EFFECTS CARDE SPEAKERS -- */
.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--main-blue);
}
.speaker-card:hover .speaker-icon-wrapper {
  background: var(--main-blue);
  transform: rotate(-10deg);
}
.speaker-card:hover .speaker-icon-wrapper svg {
  fill: #ffffff;
}
.speaker-name {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.speaker-card:hover .speaker-name {
  color: var(--main-blue);
}
.speaker-title {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}
/* --- RESPONSIVE --- */
@media (max-width: 980px) {
  .section-agenda, .section-speakers {
    padding: 60px 20px;
  }
  .speakers-grid {
    grid-template-columns: 1fr;
  }
  .agenda-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 20px;
  }
  .agenda-item:hover {
    padding-left: 30px;
  }
}
/* --- SECTION CONTENT : SINGLE COLUMN --- */
.section-about {
  padding: 50px 0px;
  font-family: var(--font-lato);
  color: #333;
}
.content-wrapper {
  /* Largeur optimale pour la lecture seule */
  margin: 0 auto;
}
/* L'accroche */
.about-lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 60px;
  font-weight: 300;
}
.about-lead a {
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid rgba(0, 154, 222, 0.2);
  transition: all 0.3s;
}
.about-lead a:hover {
  border-bottom-color: var(--main-blue);
}
/* Corps du texte */
.about-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #444;
}
/* Bloc d'emphase pour la conclusion */
.about-focus-box {
  background: #f4f7f9;
  padding: 40px;
  border-left: 4px solid var(--main-blue);
  margin-top: 50px;
}
.about-focus-box p {
  margin-bottom: 0;
  font-weight: 400;
  color: #1a1a1a;
}
.report-disclaimer {
  font-size: 0.8rem;
  color: #999;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* --- SECTION REGISTRATION --- */
.section-registration {
  padding: 50px 0px;
  font-family: var(--font-lato);
}
.registration-container {
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}
.reg-intro {
  margin-bottom: 40px;
  text-align: center;
}
.reg-intro p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}
.photo-disclaimer {
  margin-top: 40px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  font-size: 0.9rem;
  color: #777;
  line-height: 1.5;
}
/* --- OPTIMISATION GRAVITY FORMS --- */
/* Pour que le bouton Gravity Forms ressemble à ton bouton bleu Nexbit */
.gform_wrapper .gform_footer input[type="submit"], .gform_wrapper .gform_page_footer input[type="button"] {
  background: var(--main-blue) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 15px 40px !important;
  border: none !important;
  border-radius: 2px !important;
  transition: 0.3s !important;
  cursor: pointer !important;
  width: 100% !important;
  /* Bouton large pour l'impact */
}
.gform_wrapper .gform_footer input[type="submit"]:hover {
  background: #1a1a1a !important;
  /* Devient noir au survol */
  transform: translateY(-3px);
}
/* Style des champs */
.gform_wrapper input[type="text"], .gform_wrapper input[type="email"], .gform_wrapper select {
  padding: 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 2px !important;
}
@media (max-width: 768px) {
  .registration-container {
    padding: 30px;
  }
}
/* --- FOOTER NEXBIT : VERSION FINALE IMPACT --- */
.footer-nexbit {
  padding: 40px 0 0px 0;
  font-family: var(--font-lato);
  color: #ffffff;
}
.footer-nexbit a {
  color: #ffffff;
  text-decoration: underline;
}
.footer-nexbit a:hover {
  color: var(--main-blue);
}
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.footer-col {
  flex: 1;
}
/* Titres agrandis avec icônes bleues */
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--main-blue);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-title-icon {
  width: 22px;
  height: 22px;
  fill: var(--main-blue);
}
.footer-hosts-text {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
  opacity: 1;
  /* On enlève l'opacité pour plus de présence */
}
.footer-support-text {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 20px;
  padding-left: 15px;
  border-left: 2px solid var(--main-blue);
  font-style: italic;
}
/* Logos : Visibilité maximale */
.footer-col-logos {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.footer-logo-item {
  height: 50px;
  /* Légèrement plus grand */
  width: auto;
  filter: brightness(1);
  /* Assure que le blanc est pur */
  transition: transform 0.3s ease;
}
.footer-logo-item:hover {
  transform: scale(1.1);
}
/* Liens de contact */
.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* Aligné à droite sur desktop */
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: right;
}
.footer-links-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.footer-links-list a:hover {
  opacity: 1;
  color: var(--main-blue);
  padding-right: 5px;
  /* Petit effet de mouvement au survol */
}
/* Ligne de copyright */
.footer-bottom {
  max-width: 1080px;
  margin: 60px auto 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  opacity: 0.4;
  text-transform: uppercase;
}
/* --- RESPONSIVE --- */
@media (max-width: 980px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 50px;
  }
  .footer-col h4 {
    justify-content: center;
  }
  .footer-links-col {
    align-items: center;
  }
  .footer-links-list {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
/* --- ANIMATIONS DE CHARGEMENT --- */
/* 1. Définition de l'animation */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 2. Application sur les éléments (ils sont cachés au départ) */
.hero-logos-top, .hero-title-main, .hero-subtitle, .hero-divider, .hero-meta-grid {
  opacity: 0;
  /* Caché avant l'animation */
  animation: heroReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
/* 3. Délai en cascade (Stagger) */
.hero-logos-top {
  animation-delay: 0.2s;
}
.hero-title-main {
  animation-delay: 0.4s;
}
.hero-subtitle {
  animation-delay: 0.5s;
}
.hero-divider {
  animation-delay: 0.6s;
}
.hero-meta-grid {
  animation-delay: 0.8s;
}
/* Animation spécifique pour l'intérieur de la grille bleue */
.hero-logistics-wrapper > * {
  opacity: 0;
  animation: heroReveal 0.6s ease-out forwards;
}
.hero-logistics-wrapper {
  animation-delay: 1s;
}
.hero-info-box {
  animation-delay: 1.2s;
}
.btn-nexbit {
  animation-delay: 1.4s;
}
footer#main-footer {
  display: none;
}
/* --- ÉTAT INITIAL : CACHÉ --- */
.agenda-item, .speaker-card, .about-lead, .about-body p, .about-focus-box, .registration-container {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* --- ÉTAT QUAND VISIBLE (DÉCLENCHÉ AU SCROLL) --- */
.reveal-now {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
/* --- TES DÉLAIS (STAGGER) --- */
.agenda-item:nth-child(1) {
  transition-delay: 0.1s;
}
.agenda-item:nth-child(2) {
  transition-delay: 0.2s;
}
.agenda-item:nth-child(3) {
  transition-delay: 0.3s;
}
.agenda-item:nth-child(4) {
  transition-delay: 0.4s;
}
.speaker-card:nth-child(1) {
  transition-delay: 0.1s;
}
.speaker-card:nth-child(2) {
  transition-delay: 0.2s;
}
.speaker-card:nth-child(3) {
  transition-delay: 0.3s;
}
.speaker-card:nth-child(4) {
  transition-delay: 0.4s;
}
/* --- MESSAGE DE CONFIRMATION GRAVITY FORMS --- */
.reg-confirmation-message {
  text-align: left;
  padding: 20px;
  font-family: "Lato", sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}
.reg-confirmation-message h2 {
  color: var(--main-blue);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.reg-status-box {
  background: rgba(0, 154, 222, 0.05);
  border-left: 4px solid var(--main-blue);
  padding: 20px;
  margin: 25px 0;
  font-style: italic;
}
.reg-event-details {
  margin: 30px 0;
  padding: 20px;
  border: 1px solid #eee;
}
.reg-event-details h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.reg-event-details ul {
  list-style: none;
  padding: 0;
}
.reg-notice {
  font-size: 0.85rem;
  color: #888;
  margin-top: 30px;
}
/* --- BLOC DÉTAILS ÉVÉNEMENT (OPTIMISÉ) --- */
.reg-event-details {
  background: #fdffmf;
  /* Très léger reflet bleu/gris */
  border: 1px solid #e0e6ed;
  border-radius: 4px;
  padding: 0 30px;
  margin: 0;
  max-width: 500px;
  /* On limite la largeur pour plus d'élégance */
}
.reg-event-details h3 {
  color: var(--main-blue) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 20px 0 !important;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-blue);
}
.reg-event-details ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.reg-event-details ul li {
  font-size: 0.95rem;
  color: #333;
  padding: 10px 0;
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.4;
  align-items: center;
}
.reg-event-details ul li:last-child {
  border-bottom: none;
  padding-top: 15px;
  color: #1a1a1a;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}
/* On aligne les étiquettes (Date, Time, Venue) */
.reg-event-details ul li strong {
  min-width: 70px;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.reg-event-details a {
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.reg-event-details a:hover {
  border-bottom: 1px solid var(--main-blue);
}
/* --- OPTIMISATION DE LA GRILLE GRAVITY FORMS --- */
/* 1. GRILLE ET STRUCTURE */
.custom-form_wrapper .gform_fields {
  display: grid !important;
  gap: 20px 30px !important;
  grid-template-columns: repeat(12, 1fr) !important;
}
/* 2. STYLE VISUEL COMMUN (Inputs & Select) */
.custom-form_wrapper input[type="text"], .custom-form_wrapper input[type="email"], .custom-form_wrapper select.gfield_select {
  background-color: #f8f9fa !important;
  border: 1px solid #e0e0e0 !important;
  padding: 0 15px !important;
  /* Padding latéral uniquement */
  height: 46px !important;
  /* Hauteur identique pour tous */
  border-radius: 4px !important;
  font-size: 1rem !important;
  color: #1a1a1a !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}
/* 3. CENTRAGE DU TEXTE POUR INPUTS */
.custom-form_wrapper input[type="text"], .custom-form_wrapper input[type="email"] {
  line-height: 46px !important;
  /* Centre le texte verticalement dans l'input */
}
/* 4. SPÉCIFICITÉS ET CENTRAGE DU SELECT (COUNTRY) */
.custom-form_wrapper select.gfield_select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: 44px !important;
  /* Ajustement spécifique pour le select */
  /* Flèche unique en SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 12px !important;
}
/* Fix spécifique pour forcer le centrage sur certains navigateurs */
.custom-form_wrapper .ginput_container_select {
  display: block !important;
  height: 46px !important;
}
/* 5. GESTION DU FOCUS (SANS BORDURE BLEUE ÉPAISSE) */
.custom-form_wrapper input:focus, .custom-form_wrapper select.gfield_select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--main-blue) !important;
}
/* 6. LABELS ET MENTIONS OBLIGATOIRES */
.custom-form_wrapper .gfield_label {
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  color: #1a1a1a !important;
  margin-bottom: 8px !important;
}
.custom-form_wrapper .gfield_required, .custom-form_wrapper .gfield_required_text {
  color: var(--main-blue) !important;
  font-weight: 700 !important;
  text-transform: none;
  font-size: 0.75rem;
  margin-left: 4px;
}
/* 7. RÉGLAGE DES LARGEURS */
.custom-form_wrapper .gfield--width-third {
  grid-column: span 4 !important;
}
.custom-form_wrapper .gfield--width-half {
  grid-column: span 6 !important;
}
.custom-form_wrapper .gfield--width-full {
  grid-column: span 12 !important;
}
/* 8. RESPONSIVE (MOBILE) */
@media (max-width: 641px) {
  .custom-form_wrapper .gfield--width-third, .custom-form_wrapper .gfield--width-half {
    grid-column: span 12 !important;
  }
}
/* --- TITRE DU HAUT (SANS BARRE) --- */
.about-header-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #009ade !important;
  margin-bottom: 5px !important;
  line-height: 1.2;
}
/* --- LE LEAD (SOUS-TITRE) AVEC LA BARRE BLEUE --- */
.about-lead {
  position: relative;
  padding-bottom: 15px;
  /* Espace pour la ligne */
  margin-bottom: 30px;
  text-transform: uppercase;
}
.about-lead h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 !important;
}
/* La petite ligne bleue sous le lead uniquement */
.about-lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--main-blue);
}
/* On s'assure que about-body a un bon espacement */
.about-body p {
  margin-bottom: 10px;
  line-height: 1.6;
}
/* --- GRILLE DES SPEAKERS --- */
.speakers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .speakers-grid {
    grid-template-columns: 1fr 1fr;
    /* Deux colonnes dès la tablette/desktop */
  }
}
/* --- CARTE SPEAKER (VIGNETTE) --- */
.speaker-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centrage pour un look galerie */
  text-align: center;
  border: 1px solid #eee;
}
.speaker-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--main-blue);
  margin-bottom: 15px;
}
.speaker-info h4 {
  font-weight: 900;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}
.speaker-role {
  color: #666;
  font-weight: 400;
  margin: 8px 0 15px 0;
  font-size: 0.9rem;
  min-height: 40px;
  /* Aligne les boutons si les titres ont des longueurs différentes */
}
/* --- BOUTON BIOGRAPHY --- */
.btn-bio {
  background: transparent;
  border: 1px solid var(--main-blue);
  color: var(--main-blue);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-bio:hover {
  background: var(--main-blue);
  color: #fff;
}
/* --- MODALE BIOGRAPHIE (STYLISATION) --- */
#bio-modal .modal-content {
  max-width: 700px;
  padding: 40px;
}
.modal-bio-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
}
.modal-bio-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--main-blue);
}
.modal-bio-header h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  color: #1a1a1a;
  font-size: 1.5rem;
}
.modal-scroll-area {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 15px;
}
.modal-scroll-area p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}
.modal-overlay {
  display: none;
  /* Le JS le passera en 'flex' */
  position: fixed !important;
  z-index: 99999 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}
/* 2. On force le contenu à être centré et propre */
.modal-content {
  background: #fff !important;
  width: 90% !important;
  max-width: 700px !important;
  margin: auto !important;
  padding: 40px !important;
  border-radius: 8px !important;
  position: relative !important;
  z-index: 100000000 !important;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5) !important;
}
/* 3. On empêche le titre de déborder (sécurité supplémentaire) */
.hero-title-main, .about-header-title {
  z-index: 1 !important;
}
/* --- STYLE DU BOUTON DE FERMETURE (X) --- */
.close-bio {
  position: absolute !important;
  top: 15px !important;
  right: 20px !important;
  font-size: 35px !important;
  font-weight: 300 !important;
  color: #333 !important;
  cursor: pointer !important;
  line-height: 1 !important;
  z-index: 100000001 !important;
  padding: 10px !important;
  /* Augmente la zone de clic */
  transition: color 0.3s ease !important;
}
.close-bio:hover {
  color: var(--main-blue) !important;
}
/* On s'assure que le contenu de la modale est bien en position relative 
 pour que le bouton (X) se place par rapport au coin du rectangle blanc */
.modal-content {
  position: relative !important;
}
