/* Général */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #13161f;
  color: white;
  font-size: 1rem;
  line-height: 1.6;
}
p {
  margin-bottom: 1rem;
}

/* Section Hero avec effet tonique */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(255, 165, 0, 0.7); }
  to { box-shadow: 0 0 20px rgba(255, 140, 0, 1); }
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(255, 140, 0, 0.9);
}

/* Sections de caractéristiques */
.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  margin: 40px;
  background: linear-gradient(135deg, #1f2833, #2a3e57);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.feature:hover {
  transform: scale(1.02);
}

.feature .content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.feature .image {
  flex: 1;
  padding-right: 30px;
}

.feature img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.feature .text {
  flex: 2;
}

.feature h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff8c00;
  text-shadow: 0px 0px 10px rgba(255, 165, 0, 0.8);
}

.feature p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
}

/* Boutons et Liens */
a {
  text-decoration: none;
  color: #ffcc00;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #ff4500;
  text-shadow: 0px 0px 10px rgba(255, 69, 0, 0.8);
}

/* Footer */
footer {
  background-color: #181a20;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1rem;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero h1 {
      font-size: 2rem;
  }

  .feature .content {
      flex-direction: column;
      text-align: center;
  }

  .feature .image {
      padding-right: 0;
      margin-bottom: 20px;
  }

  .feature h2 {
      font-size: 1.8rem;
  }

  .feature p {
      font-size: 1.1rem;
  }
}
