* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #141414;
    color: #fff;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: #000000;
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }
  
  .logo {
    font-size: 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .navbar a {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    margin-left: 35px;
    transition: .3s;
  }

  .realisation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}
/* Hero Section */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('images/background-veille.jpg') no-repeat center center/cover;
  padding: 80px 50px;
  min-height: 100vh;
  padding-left: 400px;
}

.hero-content {
  text-align: center;
  max-width: 600px;
  margin-left: 50px; 
}

.hero-content h1 {
  font-size: 68px;
  font-weight: 700;
  color: #ffffff;
  margin-right: 100px;
}

.hero-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #000000;
  margin-right: 100px;

}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  margin-left: 10px;
}

.btn-box {
    display: flex;
    justify-content: center;
  }
  
  .btn-box a {
    display: inline-block;
    padding: 10px 30px;
    margin-right: 10px;
    background-color: #ff6a00;
    color: #fff;
    border-radius: 50px;
    transition: background-color 0.3s ease;
  }
  
  .hero-image img {
    max-width: 300px;
    border-radius: 15px;
  }
  

    
    .navbar a:hover, 
    .navbar a.active {
      color: #00abf0;
    }
    
    .footer {
      padding: 20px;
      text-align: center;
      background-color: #1b1b1b;
      color: #fff;
      font-size: 14px;
    }
    
    .footer p {
      margin-bottom: 0;
    }
    
.veille {
    min-height: 100vh; 
    background-size: cover; 
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
}



.veille-content {
    width: 100%;
    text-align: center;
    padding-top: 80px;
}

.veille-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.veille-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    gap: 30px;
}

.card {
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 30%;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

.card h4 {
    font-size: 20px;
    font-weight: 700;
}

.card p {
    font-size: 16px;
    font-weight: 600;
}

.card img {
    width: 30%;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.star {
    color: #ffd700;
    font-size: 24px;
    margin: 0 2px;
}

.empty-star {
    color: #ccc;
    font-size: 24px;
    margin: 0 2px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
/* Pop-up */
.popup {
    display: none; /* Assurez-vous que le pop-up est caché par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.80); /* Fond semi-transparent */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.popup-content img {
  max-width: 50%; /* Centrer l'image et garder une taille optimale */
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.popup-content p{
margin-top: 30px;
}
.close {
    position: absolute top 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}


.voir-plus-btn {
    padding: 15px 30px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.footer a {
  color: #ff6a00;
  font-weight: bold;
}