@charset "UTF-8";
/* Ensure Tailwind CSS is installed and configured correctly */
/* RESET DE BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.construction-banner {
  background-color: #ffcc00;
  color: #333;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* EN-TÊTE */
header {
  background-color: #003366;
  color: white;
  padding: 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar .logo a {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00aaff;
}

/* SECTION HÉRO */
.hero {
  text-align: center;
  padding: 50px 20px;
  background-color: #00aaff;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.hero .btn {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.hero .btn:hover {
  background-color: #00aaff;
}

/* SECTION FEATURES */
.features {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.feature-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature {
  width: 30%;
  margin-bottom: 30px;
}

.feature i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #00aaff;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

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

/* PIED DE PAGE */
footer {
  background-color: #003366;
  color: white;
  padding: 30px 0;
  text-align: center;
}

footer .footer-content p {
  margin-bottom: 15px;
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00aaff;
}

/* STYLES RESPONSIVES */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  .nav-links li {
    margin: 10px 10px;
  }
  .feature-list {
    flex-direction: column;
    align-items: center;
  }
  .feature {
    width: 80%;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero .btn {
    font-size: 1rem;
  }
  .features h2 {
    font-size: 2rem;
  }
}