﻿/* Styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*background-color: #f3f4f6;  Gri
    s clair */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Couleur de fond neutre */
    color: #2c3e50;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Barre de navigation */
.navbar {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1e3a8a; /* Bleu foncé */
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
}

.nav-left {
    display: flex;
    align-items: center;
}

.menu-icon {
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.site-name {
    font-size: 20px;
    font-weight: bold;
}

.nav-right {
    display: flex;
    align-items: center;
}
.download-button, .language-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.download-button:hover, .language-button:hover {
    background-color: #2980b9;
    transform: scale(1.1); /* Zoom léger */
}










/* Barre latérale */
.sidebar {
    margin-top: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: #2176bb; /* Gris foncé */
    color: white;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.sidebar.visible {
    transform: translateX(0);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 15px;
}

.sidebar-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.sidebar-links a:hover {
    color: #60a5fa; /* Bleu clair */
}

.sidebar-links i {
    margin-right: 10px;
}










/* Section principale */
.content {
    top: 100px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 70px 20px 20px 20px;
    flex-grow: 1;
}

.content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    line-height: 1.5;
}








/* Style global de la section de contact */
.contact-section {
    background-color: #f4f6f9;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.contact-section h2 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.contact-section p {
    text-align: center;
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
}

/* Formulaire de contact */
.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

/* Style des champs de saisie */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

/* Placeholder animés */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    transition: all 0.3s ease;
}

/* Bouton d'envoi */
.contact-form button {
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.contact-form button:active {
    transform: translateY(1px);
}

/* Effet de focus sur les labels et inputs */
.contact-form input:focus + label,
.contact-form textarea:focus + label {
    color: #007bff;
}

/* Style des informations de contact */
.contact-info {
    margin-top: 40px;
    text-align: center;
}

.contact-info p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0056b3;
}

.contact-info i {
    color: #007bff;
    margin-right: 10px;
    font-size: 18px;
}

/* Style des icônes Font Awesome */
.fas, .fab {
    font-size: 20px;
}

/* Media Query pour un affichage mobile fluide */
@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-info {
        font-size: 14px;
    }
}






.hero {
    height: 100vh;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-attachment: fixed;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Superposition sombre */
    padding: 20px;
    border-radius: 10px;
}

.cta-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: scale(1.1);
}









/* Reset */
body, h1, h2, h3, p, ul, li, input, button, textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f9;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header */
  .header {
    background: url('../images/akira.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 20px;
  }
  .header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .header .subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .header .btn {
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .header .btn:hover {
    background: #0056b3;
  }
  
  /* About */
  .about {
    padding: 50px 20px;
    text-align: center;
  }
  .about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .about p {
    font-size: 1.2rem;
    color: #555;
  }
  
  /* Programmes */
  .programmes {
    background: #fff;
    padding: 50px 20px;
  }
  .programmes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .card {
    background: #f4f4f9;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .card i {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 10px;
  }
  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  /* Contact */
  .contact {
    background: #007BFF;
    color: white;
    padding: 50px 20px;
  }
  .contact h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  form {
    max-width: 600px;
    margin: auto;
  }
  form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
  }
  form button {
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Footer */
  .footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  .footer p {
    margin: 5px 0;
  }
  .footer a {
    margin: 0 5px;
    color: #007BFF;
    transition: color 0.3s;
  }
  .footer a:hover {
    color: white;
  }
  











/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f4f4f4;
}

/* Header */
.header {
 
  color: white;
  text-align:center ;
  padding: 20px 0;
}

.header h1 {
  margin: 0;
  font-size: 2rem;
}

/* Sections */
section {
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1200px;
}

/* Titles */
h2 {
  color: #0078D7;
  text-align: left;
  margin-bottom: 10px;
}

h3 {
  margin-top: 20px;
  color: #444;
}

/* Features */
.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 1rem;
}

.features i {
  color: #0078D7;
  margin-right: 10px;
}

/* Screenshots */
.screenshots {
  margin-top: 20px;
  text-align: center;
}

.screenshot {
  width: 100%;
  max-width: 300px;
  margin: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 10px 0;
  margin-top: 20px;
}




/* Organisations Section */
.organisations {
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1200px;
}

.organisations h2 {
  color: #0078D7;
  margin-bottom: 20px;
  text-align: left;
}

.organisations p {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #555;
}

/* Organisation Cards */
.organisation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3rem;
  color: #0078D7;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
}

.card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}












/* Hero Section */
.hero-formation {
  background: linear-gradient(to right, #0078D7, #00A8E8);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
}

.hero-formation h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color:#F4F4F4;
}

.hero-formation p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Training Programs Section */
.training-programs {
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1200px;
}

.training-programs h3 {
  color: #F4F4F4;
  margin-bottom: 20px;
  text-align: left;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3rem;
  color: #0078D7;
  margin-bottom: 15px;
}

.card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
}

.card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.btn {
  background: #0078D7;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #005BB5;
}




/* Hero Section */
.hero-partenariat {
  background: linear-gradient(to right, #0078D7, #00A8E8);
  color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
}

.hero-partenariat h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #f4f4f4;
}

.hero-partenariat p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Levels of Commission Section */
.commission-levels {
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1200px;
}

.commission-levels h3 {
  color: #0078D7;
  margin-bottom: 20px;
  text-align: center;
}

.levels-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.level {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.level:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.level i {
  font-size: 2.5rem;
  color: #0078D7;
  margin-bottom: 10px;
}

.level h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
}

.level p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.percentage {
  display: inline-block;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #0078D7;
}

/* Call to Action Section */
.call-to-action {
  text-align: center;
  padding: 20px;
  background: #0078D7;
  color: white;
  margin: 20px auto;
  border-radius: 8px;
  width: 90%;
  max-width: 1200px;
}

.call-to-action h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.call-to-action .btn {
  background: white;
  color: #0078D7;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.call-to-action .btn:hover {
  background: #005BB5;
  color: white;
}







