
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0D1B2A;
  color: #0f172a;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;        
  background: #0f172a;
  padding: 1rem 2rem;         
}

nav .logo img {
  max-height: 300px;           
  width: auto;                
  object-fit: contain;        
}


nav ul li a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 3.2rem;
  transition: 0.2s;
}

nav ul li a:hover {
  color: #06b6d4;
  transform: scale(1.05);
}


.wesh {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #fff;
  margin: auto;
}

.wesh h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1rem;
}




.wesh img {
  max-width: 800px;
  margin: 2rem;
  border-radius: 5px;
}


.btn-essayer {
  display: inline-block;
  margin-top: 2rem;         
  padding: 1rem 2.5rem;     
  font-size: 2.3rem;        
  font-weight: bold;
  color: #fff;
  background: #06b6d4;
  border: none;
  border-radius: 10px;      
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.btn-essayer:hover {
  background: #0891b2;
  transform: scale(1.08);   
}


.btn-contact {
  padding: 1rem 2rem;          
  font-size: 2.2rem;           
  font-weight: bold;
  border: none;
  border-radius: 10px;         
  background: #06b6d4;
  color: #f0f2f5;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-contact:hover {
  background: #0891b2;
  transform: scale(1.05);
}


footer {
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}


#contact {
  max-width: 800px;
  margin: 4rem auto;
  text-align: left;
  padding: 3.2rem;
}

#contact label {
  display: block;
  margin: 0.5rem 0 0.2rem;
  font-weight: 500;
  color: #e2e8f0;
}

.atouts {
  font-size: 2.2rem;
  font-weight: bold;
  color: #e2e8f0;
  text-align: center;
  margin: 2rem auto;
  line-height: 1.5;
}

.paiement-slogan {
  font-size: 2.4rem;        
  font-weight: 600;         
  color: #e2e8f0;           
  text-align: center;
  margin: 2rem auto;
  line-height: 1.4;
}


#contact input,
#contact textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

#contact button[type="submit"] {
  padding: 0.8rem 1.5rem;
  background: #06b6d4;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}



.slogan {
  font-size: 3rem;           
  line-height: 1.5;
  color: #e2e8f0;
  text-align: center;
  margin: 2rem auto;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons a {
  font-size: 4.6rem;
  padding: 1rem;
  border-radius: 50%;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icons a .fa-facebook-f { background: #1877f2; }
.social-icons a .fa-linkedin-in { background: #0077b5; }
.social-icons a .fa-youtube { background: #ff0000; }

.social-icons a:hover {
  transform: scale(1.2);
  opacity: 0.85;
}

@media (max-width: 1024px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav .logo img {
    max-height: 120px;
  }

  nav ul li a {
    font-size: 1.1rem;
  }

  .wesh img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column; 
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  nav .logo img {
    max-height: 100px; 
  }

  nav ul li a {
    font-size: 1rem;
  }

  .wesh img {
    max-width: 300px;
  }

  .btn-essayer {
    width: 90%;
    padding: 0.9rem 1rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .slogan {
    font-size: 1.5rem;
  }

  .paiement-slogan {
    font-size: 1.6rem;
  }

  .btn-essayer,
  .btn-contact {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .wesh h1 {
    font-size: 1.5rem;
  }

  .wesh h2 {
    font-size: 1rem;
  }

  .wesh img {
    max-width: 250px;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}




