/* 
===================================
Fix Responsive Mobile pour Job Platform RDC
===================================
*/

/* Fix pour éviter que le header masque le contenu hero */
.welcome-area {
  padding-top: 120px !important; /* Espace pour le header fixe */
}

.welcome-area .header-text {
  position: absolute;
  top: 55% !important; /* Recentrer le texte */
  transform: translateY(-50%) !important;
  text-align: center;
  z-index: 2;
  width: 100%;
}

@media (max-width: 991px) {
  .welcome-area {
    padding-top: 150px !important; /* Plus d'espace sur mobile */
  }
  
  .welcome-area .header-text {
    top: 60% !important; /* Repositionner sur tablette */
  }
}

/* 
===================================
NOUVEAU MENU MOBILE - BOOTSTRAP COLLAPSE
===================================
*/

/* Bouton hamburger mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  position: absolute;
  right: 30px;
  top: 20px;
  z-index: 999;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #232323;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animation du hamburger */
.mobile-menu-toggle:not(.collapsed) .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle:not(.collapsed) .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle:not(.collapsed) .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Menu desktop visible par défaut */
.desktop-nav {
  display: flex !important;
}

/* Menu mobile caché par défaut */
.mobile-nav {
  display: none;
}

#mobileNavbar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 0 0 20px 20px;
  z-index: 998;
}

.mobile-nav {
  flex-direction: column !important;
  padding: 20px 0;
  margin: 0;
}

.mobile-nav li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #f1f1f1;
  list-style: none;
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav li a {
  display: block;
  padding: 15px 20px;
  color: #232323 !important;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.mobile-nav li a:hover,
.mobile-nav li a.active {
  background: #f8f9fa;
  color: #007bff !important;
}

/* Responsive breakpoints */
@media (max-width: 991px) {
  /* Afficher bouton mobile */
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  /* Cacher menu desktop */
  .desktop-nav {
    display: none !important;
  }
  
  /* Afficher menu mobile quand collapse est ouvert */
  #mobileNavbar.show .mobile-nav {
    display: flex !important;
  }
}

/* Corrections pour les très petits écrans (smartphones) */
@media (max-width: 480px) {
  .welcome-area {
    height: 100vh;
    min-height: 500px;
    padding: 180px 0 20px 0 !important; /* Encore plus d'espace en haut */
    margin-bottom: 50px;
  }
  
  .welcome-area .header-text {
    top: 65% !important; /* Encore plus bas sur mobile */
    padding: 0 15px;
    text-align: center;
  }
  
  .welcome-area .header-text h1 {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 20px !important;
    padding: 0 10px;
  }
  
  .welcome-area .header-text p {
    font-size: 13px !important;
    line-height: 20px !important;
    margin-bottom: 30px !important;
    padding: 0 5px;
  }
  
  .welcome-area .header-text .buttons {
    display: block !important;
    text-align: center;
  }
  
  .welcome-area .header-text .buttons .main-button a {
    font-size: 14px !important;
    padding: 12px 25px !important;
    display: inline-block;
    margin: 0 auto;
  }
  
  .mobile-menu-toggle {
    right: 20px;
    top: 15px;
  }
}

/* Corrections pour les très très petits écrans (smartphones anciens) */
@media (max-width: 375px) {
  .welcome-area {
    height: 90vh;
    min-height: 480px;
    padding: 200px 0 20px 0 !important;
  }
  
  .welcome-area .header-text {
    top: 70% !important;
  }
  
  .welcome-area .header-text h1 {
    font-size: 18px !important;
    line-height: 26px !important;
    margin-bottom: 15px !important;
  }
  
  .welcome-area .header-text p {
    font-size: 12px !important;
    line-height: 18px !important;
    margin-bottom: 25px !important;
  }
  
  .welcome-area .header-text .buttons .main-button a {
    font-size: 13px !important;
    padding: 10px 20px !important;
  }
}

/* Corrections pour les écrans ultra-petits */
@media (max-width: 320px) {
  .welcome-area {
    height: 85vh;
    min-height: 450px;
    padding: 220px 0 15px 0 !important;
  }
  
  .welcome-area .header-text {
    padding: 0 10px;
    top: 75% !important;
  }
  
  .welcome-area .header-text h1 {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 12px !important;
  }
  
  .welcome-area .header-text p {
    font-size: 11px !important;
    line-height: 16px !important;
    margin-bottom: 20px !important;
  }
  
  .welcome-area .header-text .buttons .main-button a {
    font-size: 12px !important;
    padding: 8px 16px !important;
  }
}

/* Fix pour les colonnes Bootstrap sur mobile */
@media (max-width: 767px) {
  .welcome-area .container .row .offset-xl-3.col-xl-6.offset-lg-2.col-lg-8 {
    padding: 0 15px;
    margin: 0;
  }
}

/* Assurer que le texte reste centré sur tous les écrans */
@media (max-width: 991px) {
  .welcome-area .header-text h1,
  .welcome-area .header-text p {
    text-align: center !important;
  }
}

/* Fix pour l'arrière-plan sur mobile */
@media (max-width: 768px) {
  .welcome-area {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
  }
}

/* Amélioration de la lisibilité sur mobile */
@media (max-width: 480px) {
  .welcome-area::before {
    background: rgba(0, 0, 0, 0.3) !important; /* Overlay un peu plus foncé sur mobile pour la lisibilité */
  }
}

/* 
===================================
NETTOYAGE - CACHER LES ANCIENS ÉLÉMENTS
===================================
*/

/* Cacher complètement l'ancien menu trigger pour éviter les conflits */
.header-area .main-nav .menu-trigger {
  display: none !important;
}

/* Cacher les anciennes règles de menu qui peuvent interférer */
@media (max-width: 991px) {
  .header-area .main-nav .nav:not(.desktop-nav):not(.mobile-nav) {
    display: none !important;
  }
}
