/* Variables globales */
:root {
  --primary-green: #2ecc71;
  --primary-blue: #3498db;
  --primary-yellow: #f1c40f;
  --sidebar-width: 250px;
  --navbar-height: 60px;
}

/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  background-color: cornsilk;
}

/* Conteneurs et éléments de base */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

a {
  text-decoration: none;
  color: black;
}

h2 {
  margin-top: 5px;
  text-align: center;
}
h5{
  font-size: 14px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-left: 15px;
  
}

.ww {
  margin-bottom: 55px;
}


/* Easy Process Version */
.vers {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  margin: auto;
}

.chiffre {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.voir {
  color: white;
}

/* Navbar */
.navbar {
  background: white;
  padding: 1rem;
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s;
}

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

.nav-content img {
  margin-right: auto;
  max-width: 150px;
  height: auto;
}


/* ma navbar scroll horizontalemnt sur mobile avec ce css */
@media screen and (max-width: 768px) {
  .navbar {
    overflow-x: auto; 
    overflow-y: hidden;
    white-space: nowrap; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
  }
  
  .navbar::-webkit-scrollbar {
    display: none; 
  }
  
  .nav-content {
    display: inline-flex; 
    flex-wrap: nowrap; 
    width: auto; 
    min-width: 100%; 
  }
  
  .nav-menu {
    display: inline-flex;
    flex-wrap: nowrap; 
  }
  
  .submenu {
    position: absolute;
    left: 0; 
  }
}

/* Menu principal */
.nav-menu {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgb(4, 4, 4);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s;
}

.nav-link:hover {
  background-color: rgba(0,0,0,0.1);
}

/* Sous-menu */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-link {
  color: #333;
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: block;
  transition: all 0.3s;
}

.submenu-link:hover {
  background-color: #f0f0f0;
  color: var(--primary-blue);
}




/* ma liste des fonctionnalite */
.main-liste {
  font-size: 18px;
  margin-bottom: 10px;
}
.sub-list {
  list-style-type: lower-alpha;
  margin-left: 30px;
}
.sub-liste {
   font-size: 16px;
  margin: 1px 0;
 } 
/* ma liste  de fonctionnalites fin */

/* Footer principal - toujours prioritaire */
.footer {
  background-color: #1a1a1a;
  color: white;
  width: 100vw; 
  margin-left: calc(-50vw + 50%);
  padding: 40px 0;
  margin-top: 40px;
  margin-bottom: 0;
  box-sizing: border-box;
  position: relative; 
  left: 0;
  right: 0;
}


body {
  overflow-x: hidden; 
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 20px;
}

.footer-section {
  width: 100%;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: white;
}


.container .footer {
  max-width: none;
  margin-left: calc(-50vw + 50%);
  width: 100vw;
}


@media screen and (max-width: 800px) {
  .footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 30px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 20px;
  }
}

@media screen and (max-width: 375px) {
  .footer {
    padding: 20px 0;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
  }
} 







/* 
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.card-content {
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
  padding: 20px 0;
} */





