/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

/* HEADER */
header {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
}

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

header .logo img {
  width: 150px;
  margin-right: 15px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover {
  color: #ccc;
}

/* HERO */
.hero {
  background: url("IMG_Banniere.png") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  max-width: 100%;
  height: auto;
  
  
}

.hero h1 {
  font-size: 2.5rem;
  margin-top: 240px;
  margin-bottom: 0px;
}
.hero h2 {
  font-size: 2.5rem;
  
  margin-bottom: 0px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 150px;
}

.hero .btn {
  padding: 10px 20px;
  background: #fff;
  color: #111;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.hero .btn:hover {
  background: #ddd;
}

/* PRESENTATION */
.presentation {
  padding: 50px 20px;
  text-align: center;
}

.presentation h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
}

.presentation p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* SERVICES */
.services {
  background: #f8f8f8;
  padding: 50px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 15px;
  color: #111;
}

.card p {
  font-size: 1rem;
  color: #555;
}

/* CONTACT */
.contact {
  padding: 50px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
/*  essaie de social dans contact 
.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.contact button:hover {
  background: #333;
} */
/* reseau social contact*/
.contact .socials{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-bottom:20px;
    flex-wrap:wrap;
  }

  .contact.socials a{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    color:#f5f5f5;
    text-decoration:none;
    transition:all .2s ease;
  }

  .contact .socials a:hover{
    color:#0ea5e9;
    border-color:#0ea5e9;
    transform:translateY(-2px);
  }

  .contact .socials svg{
    width:60%;
    height:60%;
    display:block;
  }
  /*   fin eseau social contact */
/* FOOTER */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
/* reseau social*/
footer .socials{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-bottom:20px;
    flex-wrap:wrap;
  }

  footer .socials a{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    color:#f5f5f5;
    text-decoration:none;
    transition:all .2s ease;
  }

  footer .socials a:hover{
    color:#0ea5e9;
    border-color:#0ea5e9;
    transform:translateY(-2px);
  }

  footer .socials svg{
    width:60%;
    height:60%;
    display:block;
  }

  footer p{
    margin:0;
    font-size:.9rem;
    opacity:.8;
  }


  
/* RESPONSIVE */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}
