@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&family=Poppins:wght@200;300;400;500;600;700&display=swap');


body {
    padding: 0px;
    margin: 0px;
    background-color: #000F17;
    font-family: 'Poppins', sans-serif;
    color: #FFF;
    box-sizing: border-box;
}

/* COMMON ELEMENTS */
/* ANIMATIONS */
.hub_anim_fade_0 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 0s;
}
.hub_anim_fade_1 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 0.2s;
}
.hub_anim_fade_2 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 0.4s;
}
.hub_anim_fade_3 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 0.8s;
}
.hub_anim_fade_4 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 1s;
}
.hub_anim_fade_10 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 1s;
}
.hub_anim_fade_11 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 1.2s;
}

.hub_anim_fade_102 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 4s;
}
.hub_anim_fade_110 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 4.1s;
}
.hub_anim_fade_111 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 3.3s;
}
.hub_anim_slide_0 {
    opacity: 0;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.hub_anim_slide_100 {
    opacity: 0;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3.8s both;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-left {
    0% {
        opacity: 0;
      -webkit-transform: translateX(100px);
              transform: translateX(100px);
    }
    100% {
        opacity: 1;
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }

/* BUTTONS */
/* Styles de base pour les boutons - conservés pour desktop */
/* Styles originaux conservés */
.hub__button_fill {
  margin-right: 10px;
  background-color: #FFCD4D;
  border: 1px solid #FFCD4D;
  border-radius: 6px;
  color: #000F17;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px 7px 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hub__button_outline {
  margin-right: 10px;
  background-color: transparent;
  border: 3px solid #FFCD4D;
  border-radius: 6px;
  color: #FFCD4D;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px 7px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* LinkedIn Button */
.hub__button_linkedin {
  display: inline-flex;
  background-color: #0077B5;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  height: 44px; /* Même hauteur que les autres boutons */
  min-width: 180px; /* Largeur légèrement plus grande */
}

.hub__linkedin_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hub__linkedin_icon {
  width: 18px;
  height: 18px;
  transition: all 0.2s ease;
  fill: #ffffff;
}

/* Effet de surbrillance au survol */
.hub__button_linkedin:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 15px rgba(255, 205, 77, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
}
.hub__button_outline:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 15px rgba(255, 205, 77, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
}
.hub__button_fill:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 15px rgba(255, 205, 77, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Adaptation pour mobile uniquement */
@media (max-width: 768px) {
  .hub__header_text_button_container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hub__button_fill,
  .hub__button_outline,
  .hub__button_linkedin {
    width: 100%;
    max-width: 200px;
    margin: 0 0 10px 0 !important;
    justify-content: center;
    padding: 12px 20px;
  }


}

/* Style de la bannière animée */
.hub__event_banner {
    background: linear-gradient(90deg, #1e5a7a, #0d2a3a);
    color: #fff;
    top: 70px;
    padding: 12px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height: 24px; /* Hauteur fixe pour éviter les sauts */
    z-index: 89;
}

.hub__event_banner_content {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    animation: scrollText 20s linear infinite;
    font-family: 'poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
}


@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Animation de survol pour un effet moderne */
.hub__event_banner:hover .hub__event_banner_content {
    animation-play-state: paused;
}

/* Version mobile - Adaptation complète */
    @media (max-width: 768px) {
        .hub__event_banner {
            padding: 10px 15px;
            font-size: 14px;
        }

        .hub__event_banner_text {
            font-size: 14px;
            max-width: 85%;
        }

        .hub__event_banner_close {
            font-size: 20px;
            padding: 0 0 0 10px;
        }

        .hub__event_banner_content {
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }

        .hub__event_banner_close {
            margin-left: 0;
            align-self: center;
        }
    }






/* NAVBAR */

  /* Style de base de la navbar (conserve vos paramètres originaux) */
  .hub__navbar_container {
    background-image: linear-gradient(to bottom, rgba(0,15,23,1) 90%, rgba(0,15,23,0) 100%);
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    z-index: 90; /* Reste derrière la bannière */
  }

  .hub__navbar {
    width: calc(100% - 160px);
    height: calc(100% - 20px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    box-sizing: border-box;
  }

  /* Partie gauche avec logo et liens */
  .hub__navbar_left {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .hub__navbar_logo {
    height: 46px;
    margin-right: 30px;
    cursor: pointer;
  }

  /* Conteneur des liens (pour le masquer sur mobile) */
  .hub__navbar_links {
    display: flex;
    align-items: center;
    height: 100%;
  }

  /* Style des liens */
  .hub__navbar_link {
    font-weight: 500;
    margin-right: 26px;
    cursor: pointer;
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .hub__navbar_link:hover {
    color: #FFCD4D;
  }

  /* Logo JV à droite */
  .hub__navbar_jv {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .hub__navbar_jv img {
    margin-top: 2px;
    height: 36px;
  }

  /* Bouton menu hamburger (caché par défaut) */
  .hub__navbar_toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    margin-left: 20px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    z-index: 1001;
  }

  .hub__navbar_toggle_bar {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Menu mobile (caché par défaut) */
  .hub__navbar_mobile_menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0, 15, 23, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 89;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .hub__navbar_mobile_link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-align: center;
  }

  .hub__navbar_mobile_link:hover {
    color: #FFCD4D;
  }

  /* Animation pour le bouton hamburger */
  .hub__navbar_toggle.active .hub__navbar_toggle_bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hub__navbar_toggle.active .hub__navbar_toggle_bar:nth-child(2) {
    opacity: 0;
  }

  .hub__navbar_toggle.active .hub__navbar_toggle_bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Adaptation responsive */
  @media (max-width: 1200px) {
    .hub__navbar {
      width: calc(100% - 120px);
      padding: 0 60px;
    }

    .hub__navbar_links {
      gap: 5px;
    }

    .hub__navbar_link {
      margin-right: 15px;
      font-size: 15px;
    }
  }

  @media (max-width: 992px) {
    .hub__navbar {
      width: 100%;
      padding: 0 20px;
      justify-content: space-between;
    }

    .hub__navbar_left {
      margin-right: 0;
    }

    /* Cache les liens desktop */
    .hub__navbar_links {
      display: none;
    }

    /* Affiche le bouton hamburger */
    .hub__navbar_toggle {
      display: flex;
      margin-left: 15px;
    }

    .hub__navbar_logo {
      margin-right: 0;
    }
  }

  @media (max-width: 768px) {
    .hub__navbar {
      height: 70px;
    }

    .hub__navbar_container {
      height: 70px;
    }

    .hub__navbar_logo {
      height: 40px;
    }

    .hub__navbar_jv img {
      height: 30px;
    }
  }


/* HEADER */
.hub__header {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hub__header_text_container {
    margin-left: 80px;
    z-index: 1;
}

.hub__header_text_second {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.1em;
}

.hub__header_text_main {
    width: 50vw;
    margin: 10px 0px 30px 0px;
}

.hub__header_text_button_container {
    display: flex;
}

.hub__header_img {
    position: absolute;
    top: 50px;
    bottom: 0px;
    right: 0px;
    height: 95vh;
    z-index: -10;
}

.hub__header_arraow_container {
    position: absolute;
    bottom: 10px;
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    background-color: transparent;
    cursor: pointer;
}

.hub__header_arrow {
    position: absolute;
    bottom: 26px;
    left: calc(50% - 20px);
    width: 40px;
    -webkit-animation: fade_move_down 2s ease-in-out infinite;
    -moz-animation: fade_move_down 2s ease-in-out infinite;
    animation: fade_move_down 2s ease-in-out infinite;
}

@-webkit-keyframes fade_move_down {
    0% {
        -webkit-transform: translate(0, -20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }
}

@-moz-keyframes fade_move_down {
    0% {
        -moz-transform: translate(0, -20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -moz-transform: translate(0, 20px);
        opacity: 0;
    }
}

@keyframes fade_move_down {
    0% {
        transform: translate(0, -20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 20px);
        opacity: 0;
    }
}

/* LANDING */
.hub__landing_section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hub__landing_spacer_30 {
    height: 30px;
    width: 10px;
}

.hub__landing_spacer_50 {
    height: 50px;
    width: 10px;
}

.hub__landing_spacer_100 {
    height: 100px;
    width: 10px;
}

.hub__landing_spacer_150 {
    height: 150px;
    width: 10px;
}

.hub__landing_fixed_width {
    /* width: 1100px; */
    width: min(1100px, calc(100% - 40px));
    position: relative;
}

.hub__landing_box_centered_vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hub__landing_box_centered_horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hub__landing_text {
    font-weight: 600;
    font-size: 24px;
}

.hub__landing_text_small {
    font-weight: 200;
    font-size: 19px;
    text-align: justify;
}

.hub__landing_jv {
    /* width: 500px; */
    width: min(500px, 80%);
}

.hub__landing_quote_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 280px;
    width: 280px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
    opacity: 0;
}

.hub__landing_quote {
    width: 80%;
    text-align: center;
    color: #FFCD4D;
    font-weight: 500;
    font-size: 22px;
    margin-top: 10px;
}

.hub__landing_title_container {
    opacity: 0;
}


.hub__landing_title_bar {
    width: 40px;
    height: 4px;
    /* background: linear-gradient(90deg, #FFCD4D -3.32%, #A15A3C 100%); */
    background: linear-gradient(90deg, #FFCD4D -3.32%, #000F17 100%);
    margin-bottom: 1px;
}

.hub__landing_title {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.hub__landing_link {
    color: #FFCD4D;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.8px;
    border: 1px solid #FFCD4D;
    border-radius: 6px;
    padding: 0px 6px;
    margin-right: 6px;
    cursor: pointer;
}

.hub__landing_info_container {
    width: 500px;
    /* width: 310px; */
    height: 145px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
    padding: 20px;
}

.hub__landing_info_title_container {
    display: flex;
    align-items: center;
}

.hub__landing_info_title_container>img {
    height: 40px;
    margin-right: 10px;
}

.hub__landing_info_title {
    font-weight: 500;
    font-size: 22px;
}

/* Conteneur des activités - Version optimisée */
.hub__activities_box_container {
  display: flex;
  flex-wrap: wrap; /* Permet le retour à la ligne */
  justify-content: center; /* Centrage des éléments */
  gap: 16px; /* Espacement réduit entre les box */
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; /* Padding latéral pour les petits écrans */
}

/* Box individuelle - Version responsive */
.hub__activity_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 140px; /* Hauteur réduite pour mobile */
  flex: 1 1 calc(25% - 16px); /* 4 colonnes par défaut avec espacement */
  min-width: 150px; /* Largeur minimale réduite */
  max-width: 250px; /* Largeur maximale pour éviter l'étirement */
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(217, 217, 217, 0.12) 0%, rgba(217, 217, 217, 0.06) 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Inclut le padding dans les dimensions */
  padding: 10px; /* Padding interne réduit */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Ombre légère pour la profondeur */
}

.hub__activity_box:hover {
  background: rgba(255, 205, 77, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(255, 205, 77, 0.15);
}

.hub__activity_box_title {
  color: #FFCD4D;
  font-weight: 500;
  font-size: 16px; /* Taille de police réduite pour mobile */
  text-align: center;
  padding: 0 15px;
  line-height: 1.3; /* Meilleure lisibilité */
}

/* Adaptation pour tablettes (2 colonnes) */
@media (max-width: 1024px) {
  .hub__activity_box {
    flex: 1 1 calc(50% - 16px); /* 2 colonnes */
    height: 130px;
  }
}

/* Adaptation pour mobiles (1 colonne) */
@media (max-width: 768px) {
  .hub__activities_box_container {
    gap: 12px; /* Espacement encore réduit */
    padding: 0 15px;
  }

  .hub__activity_box {
    flex: 1 1 100%; /* 1 colonne */
    height: 120px; /* Hauteur encore réduite */
    min-width: 0; /* Permet aux box de rétrécir */
    max-width: none; /* Pas de limite maximale */
    margin-bottom: 12px; /* Espacement vertical */
  }

  .hub__activity_box_title {
    font-size: 15px; /* Police encore réduite */
  }
}

/* Adaptation pour très petits écrans */
@media (max-width: 480px) {
  .hub__activity_box {
    height: 110px;
    border-radius: 12px; /* Bordures légèrement moins arrondies */
  }

  .hub__activity_box_title {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* SECTION PILLARS */
/* SECTION PILLARS - Version responsive */
.hub__landing_pillars_title_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap; /* Permet le retour à la ligne sur mobile */
  gap: 10px; /* Espacement entre les éléments */
  margin-bottom: 20px;
}

.hub__pillar_content {
  display: flex;
  align-items: center;
  flex-direction: column; /* Empile l'icône et le texte sur mobile */
}

.hub__landing_pillars_title {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex: 1; /* Permet une répartition équilibrée */
  min-width: 120px; /* Largeur minimale */
  max-width: 200px; /* Largeur maximale */
  padding: 10px 5px;
  text-align: center;
}

.hub__landing_pillars_title > img {
  height: 30px;
  margin-right: 5px; /* Retiré pour le flex column */
  margin-bottom: 5px; /* Espacement pour le flex column */
}

.hub__landing_info_title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

/* Indicateur jaune responsive */
.hub__landing_pillars_indicator {
  position: absolute;
  top: calc(100% - 3px); /* Positionné en bas sur desktop */
  left: 0px;
  width: 100px;
  height: 3px;
  border-radius: 3px;
  background-color: #FFCD4D;
  transition: all 0.3s ease-in-out;
}

/* Conteneur de texte */
.hub__landing_pillars_text_container {
  margin-top: 30px;
  width: calc(100% - 40px);
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
  margin: 20px auto 0;
}

/* Adaptation pour tablettes */
@media (max-width: 1024px) {
  .hub__landing_pillars_title {
    min-width: 100px;
    max-width: 160px;
  }

  .hub__landing_info_title {
    font-size: 13px;
  }
}

/* Adaptation pour mobiles */
@media (max-width: 768px) {
  .hub__landing_pillars_title_container {
    flex-direction: column; /* Empile les éléments verticalement */
    align-items: center;
  }

  .hub__landing_pillars_title {
    width: 100%;
    max-width: none;
    min-width: auto;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(217, 217, 217, 0.05);
  }

  .hub__pillar_content {
    flex-direction: row; /* Remet en ligne sur mobile */
  }

  .hub__landing_pillars_title > img {
    margin-right: 10px;
    margin-bottom: 0;
  }

  /* Indicateur adapté pour mobile */
  .hub__landing_pillars_indicator {
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    transform: translateY(0);
  }

  /* Style pour l'élément sélectionné */
  .hub__landing_pillars_title.selected {
    background: rgba(255, 205, 77, 0.1);
    border: 1px solid rgba(255, 205, 77, 0.3);
  }

  .hub__landing_pillars_text_container {
    width: calc(100% - 20px);
    padding: 15px;
    margin-top: 10px;
  }
}




/* SECTION MEMBERS */
.hub__section_members {
    width: 100%;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.hub__section_title {
    /* color: #000F17; */
    display: flex;
    justify-content: center;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
}

/* SLIDER START */

/* Conteneur du slider */
.hub__slider_container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  background-color: transparent;
}

/* Piste du slider */
.hub__slider {
  display: flex;
  width: 200%;
}

/* Boucle de logos */
.hub__slider_loop {
  display: flex;
  width: 100%;
  animation: slide 80s linear infinite; /* Durée de 80s sur ordinateur */
  gap: 20px;
  align-items: center;
}

/* Deuxième boucle (pour l'effet infini) */
.hub__slider_loop:nth-child(2) {
  animation-delay: 40s; /* Délai de 40s (la moitié de 80s) */
}

/* Item du slider */
.hub__slider_item {
  flex: 0 0 auto;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

/* Conteneur du logo */
.hub__slider_logo_container {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
}

/* Logo */
.hub__slider_logo {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/* Message "Join us" */
.hub__slider_join {
  background-color: transparent;
  border: none;
}

/* Animation du slider */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Décale de la moitié de la largeur totale */
  }
}

/* Pause de l'animation au survol */
.hub__slider_container:hover .hub__slider_loop {
  animation-play-state: paused;
}

/* Style pour le texte "Join us" */
.hub__landing_text_small_join {
  font-size: 0.9rem;
  color: #FFFFFF;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}

/* Adaptation pour mobile : durée de 60s */
@media (max-width: 768px) {
  .hub__slider_loop {
    animation-duration: 60s; /* Durée de 60s sur téléphone */
  }

  .hub__slider_loop:nth-child(2) {
    animation-delay: 30s; /* Délai de 30s (la moitié de 60s) */
  }

  /* Réduction de la taille des logos sur mobile */
  .hub__slider_item {
    width: 120px;
    height: 80px;
  }

  .hub__slider_logo_container {
    width: 100px;
    height: 60px;
  }
}


/* SLIDER END */

/* SECTION JOIN */
.hub__landing_astronaut {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    height: 550px;
    margin-right: 30px;
}

.hub__landing_join_form {
    /* min-height: 300px; */
    width: 500px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.08) 0%, rgba(217, 217, 217, 0.06) 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    position: relative;
}

.hub__landing_join_form_title {
    margin-bottom: 10px;
}

.hub__landing_join_form_textarea {
    width: 100%;
    height: 70px;
    border: none;
    padding: 0;
    background-color: transparent;
    resize: none;
    font-family: 'Rajdhani', sans-serif;
    color: #FFF;
    border-bottom: 1px solid rgba(128, 128, 128, 0.5);
    outline: none;
    margin-bottom: 30px;
    transition: all 0.2s ease;
}

.hub__landing_join_form_textarea:focus {
    border-bottom: 1px solid #FFCD4D;
}

.hub__landing_join_form_block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hub__landing_join_form_input_small {
    width: calc(50% - 14px);
    height: 25px;
    background-color: transparent;
    border: none;
    padding: 0;
    font-family: 'Rajdhani', sans-serif;
    color: #FFF;
    border-bottom: 1px solid rgba(128, 128, 128, 0.5);
    outline: none;
    transition: all 0.2s ease;
}

.hub__landing_join_form_input_small:focus {
    border-bottom: 1px solid #FFCD4D;
}

.hub__landing_join_form_input_large {
    width: 100%;
    height: 25px;
    background-color: transparent;
    border: none;
    padding: 0;
    font-family: 'Rajdhani', sans-serif;
    color: #FFF;
    border-bottom: 1px solid rgba(128, 128, 128, 0.5);
    margin-bottom: 40px;
    outline: none;
    transition: all 0.2s ease;
}

.hub__landing_join_form_input_large:focus {
    border-bottom: 1px solid #FFCD4D;
}

.hub__landing_join_form_message {
    position: absolute;
    bottom: 16px;
    font-weight: 200;
    font-size: 15px;
    transition: all 0.2s ease;
    opacity: 0;
    color: #FFCD4D;
}

.hub__landing_join_form_message_shown {
    opacity: 1;
}

.hub__button_outline_small {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  margin: 5px;
  transition: all 0.3s ease;
  text-align: center;
}

.hub__button_outline_small:hover {
  background-color: #fff;
  color: #000F17;
}


/* SECTION MORE */
.hub__landing_more_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 300px;
    padding: 0px 20px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
    cursor: pointer;
    text-decoration: none;
    color: #FFF;
}

.hub__landing_more_container>img {
    /* margin-right: 10px; */
    height: 60px;
}

.hub__landing_more_text {
    font-size: 17px;
    font-weight: 500;
}

/* SECTION CONTACT */

.hub__landing_porthole {
    position: absolute;
    width: 550px;
    top: -90px;
    right: -75px;
    z-index: 0;
    /* -webkit-transform: scaleX(-1);
    transform: scaleX(-1); */
}

.hub__landing_contact_circle {
    height: 7px;
    width: 7px;
    border-radius: 6px;
    background-color: #FFCD4D;
    position: absolute;
    top: 12px;
    left: 94px;
    z-index: 2;
}

.hub__landing_contact_pointer {
    height: 50px;
    width: 1px;
    background-color: #FFCD4D;
    position: absolute;
    top: 18px;
    left: 97px;
    z-index: 2;
}




/* FOOTER */

/*.hub__footer {
    width: 100%;
    height: 200px;
    background-color: #111F26;
} */

.footer {
  background-color: #000F17;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #FFCD4D;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.legal-notice-link {
  color: #FFCD4D;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.legal-notice-link:hover {
  opacity: 0.8;
}

/* PAGE LOADER */
.hub__loader_container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000F17;
    z-index: 1000;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    animation: fade-out 0.2s ease-in-out forwards 1.8s;
}


.hub__loader_container_logo {
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 200px);
    height: 400px;
    animation: size-in 0.8s ease-in-out forwards 1.1s;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hub__loader_container_logo_show {
    opacity: 1;
    
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes size-in {
    0% {
        top: calc(50% - 200px);
        left: calc(50% - 200px);
        height: 400px;
    }

    100% {
        top: calc(50% - 200px);
        left: calc(50% - 200px);
        height: 46px;
        top: 7px;
        left: 80px;
    }
}





/* RESPONSIVE */
@media only screen and (max-width: 600px) {
    .hub__landing_astronaut {
        display: none;
    }

    .hub__landing_pillars_title_container{
        flex-direction: column;
    }

    .hub__landing_box_centered_horizontal{
        flex-direction: column;
        gap: 10px;
    }

    .hub__navbar{
        margin-left: 20px;
        width: calc(100% - 40px);
    }

    .hub__navbar_link, .hub__navbar_link_button{
        display: none;
    }

    .hub__landing_join_form{
        width: calc(100% - 40px);
        padding: 30px 20px;
    }

    .hub__header_text_container{
        margin-left: 20px;
    }

    .hub__header_text_second{
        font-size: 16px;
    }

    .hub__header_text_main{
        width: 80vw;
    }

    .hub__section_title{
        font-size: 26px;
    }

    .hub__landing_text{
        font-size: 18px;
    }

    .hub__landing_more_container{
        margin-right: 0px !important;
    }

    .hub__landing_porthole, .hub__landing_contact_circle, .hub__landing_contact_pointer{
        display: none;
    }
}


/* All Members Page */
.hub__members_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.hub__member_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
    transition: transform 0.2s ease;
}

.hub__member_item:hover {
    transform: scale(1.05);
}

.hub__member_item img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hub__member_name {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}
@media only screen and (max-width: 600px) {
    .hub__members_list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}



/* Clickable Member Items */
.hub__member_link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.hub__member_item {
    padding: 30px 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
    transition: all 0.2s ease;
}

.hub__member_link:hover .hub__member_item,
.hub__member_link:focus .hub__member_item {
    transform: scale(1.05);
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.2) 0%, rgba(217, 217, 217, 0.1) 100%);
    box-shadow: 0 4px 8px rgba(255, 205, 77, 0.2);
}

.hub__member_item img {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
    max-width: 100%;
}

.hub__member_item img {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
    max-width: 100%;
}



/*style du logo en png sur page membre */

.hub__member_detail_logo_png {
    max-width: 300px; /* Ajuste cette valeur pour réduire la taille */
    max-height: 200px; /* Ajuste cette valeur pour limiter la hauteur */
    width: auto;
    height: auto;
    object-fit: contain; /* Conserve les proportions */
    margin-bottom: 20px; /* Espace en dessous du logo */
}

/* Member Detail Page Link */
.hub__member_detail_link {
    color: #FFCD4D; /* Your theme's yellow accent color */
    text-decoration: none;
    transition: all 0.2s ease;
}

.hub__member_detail_link:hover {
    color: #FFF; /* White on hover for contrast */
    text-decoration: underline;
}





/* Activities Page */
.hub__activities_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.hub__activity_section {
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
    padding: 25px;
    transition: transform 0.2s ease;
}

.hub__activity_section:hover {
    transform: scale(1.02);
}

.hub__activity_title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFCD4D;
}

.hub__activity_content {
    font-size: 16px;
    line-height: 1.6;
    color: #FFF;
}

.hub__activity_content p {
    margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
    .hub__activity_title {
        font-size: 18px;
    }
    .hub__activity_content {
        font-size: 14px;
    }
}

/* Smaller Button for "Our Activities" */
.hub__button_outline_small {
    background-color: transparent;
    border: 1px solid #FFCD4D;
    border-radius: 6px;
    color: #FFCD4D;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    max-width: 200px;
    margin: 20px auto 0;
}

.hub__button_outline_small:hover {
    background-color: #FFCD4D;
    color: #000F17;
}

/* Conference Logos */
/* Conference Logos Grid */
/* Conference Logos Grid */
.hub__conference_logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
    width: 100%;
}

/* Style pour chaque encadré de logo */
.hub__conference_logo {
    height: 150px;
    border-radius: 8px;
    overflow: hidden; /* Crucial pour masquer les débordements */
    position: relative;
    cursor: pointer;
    background: #f0f0f0; /* Fond léger optionnel */
}

/* Style pour les images à l'intérieur des encadrés avec rognage */
.hub__conference_logo img {
    width: 110% !important; /* 110% pour rogner les côtés */
    height: 110% !important; /* 110% pour rogner le haut et le bas */
    object-fit: cover !important; /* Remplit tout l'espace */
    border-radius: 8px; /* Même rayon que le conteneur */
    display: block;
    position: relative;
    left: -5%; /* Décale vers la gauche pour centrer le rognage */
    top: -5%; /* Décale vers le haut pour centrer le rognage */
}

/* Effet au survol */
.hub__conference_logo:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hub__conference_logos {
        grid-template-columns: repeat(2, 1fr);
    }
    .hub__conference_logo img {
        width: 115% !important; /* Rogne un peu plus sur mobile */
        height: 115% !important;
        left: -7.5%;
        top: -7.5%;
    }
}

@media (max-width: 480px) {
    .hub__conference_logos {
        grid-template-columns: 1fr;
    }
    .hub__conference_logo {
        height: 120px;
    }
    .hub__conference_logo img {
        width: 120% !important; /* Rogne encore plus sur petits écrans */
        height: 120% !important;
        left: -10%;
        top: -10%;
    }
}
