/* ===== Reset / Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #1e1e1e;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* ===== Header ===== */
  header {
    background-color: #0f0f0f;
    padding: 20px 0;
    color: white;
  }
  
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo-container {
    background-color: transparent;
    padding: 0px;
    width: auto;
    height: auto;
    max-height: 80px; /* limite la hauteur du header */
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 70px; /* adapte la hauteur pour un logo horizontal */
    width: auto;  /* garde les proportions */
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    background-color: #ffffff;
  }
  
  nav a {
    margin: 0 15px;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #facc15;
  }
  
  #language-select {
    background-color: #1e1e1e;
    color: white;
    border: 1px solid #444;
    padding: 5px 10px;
    border-radius: 4px;
  }
  
  /* ===== Hero ===== */
  .hero {
    background-color: #ffffff;
    padding: 100px 20px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #444;
  }
  
  .btn-yellow {
    background-color: #ffd93d;
    color: #1e1e1e;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .btn-yellow:hover {
    background-color: #e6c100;
  }
  
  /* ===== About Section ===== */
  .about {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #444;
  }
  
  /* ===== Services Section ===== */
  .services {
    padding: 80px 20px;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
  }
  
  /* Responsive Cards */
  @media (max-width: 768px) {
    .service-cards {
      flex-direction: column;
    }
  
    .card {
      width: 100%;
    }
  }
  
  /* ===== Expertise Section ===== */
  .expertise {
    background-color: #f0f0f0;
    padding: 80px 20px;
    text-align: center;
  }
  
  .expertise h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e1e1e;
  }
  
  .expertise p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
    line-height: 1.7;
  }
  
  /* ===== Automation Section ===== */
  .automation {
    background-color: #f0f0f0;
    padding: 80px 20px;
    text-align: center;
  }
  
  .automation h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e1e1e;
    font-weight: 600;
  }
  
  .automation p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1rem;
    color: #555;
  }
  
  /* ===== Contact Section ===== */
  .contact {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact p {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .contact strong {
    font-size: 1.5rem;
    color: #000000;
  }
  
  /* ===== Footer ===== */
  footer {
    background-color: #0f0f0f;
    color: white;
    padding: 10px 10px;
    text-align: center;
    margin-top: 60px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-logo img {
    height: 100px; /* ou plus si tu veux plus grand */
    width: auto;
    object-fit: contain;
    display: block; /* Évite les espaces fantômes en ligne */
    margin: 0;
    padding: 0;
    border-radius: 8px;
  }
  
  
  .footer-links {
    margin-top: 15px;
  }
  
  .footer-links a {
    margin: 0 10px;
    font-size: 0.95rem;
    color: white;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #facc15;
  }

