/* Global Style */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,700&display=swap");

body {
  background: linear-gradient(to bottom, #4c2f62, #e66895, #984bc6);
  /*background-image: url("/public/assets/images/woman entrepreneur working.png");
  background-position: center; 
  background-repeat: no-repeat;*/
}

h1 {
  line-height: 1.4;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  background-color: #333; /* Couleur de fond du header */
  font-family: "Montserrat", sans-serif; /* Application de la police Montserrat */
}

.logo {
  display: flex;
  align-items: center;
}

.nav-bar {
  display: flex;
  gap: 1rem;
}

.nav-bar a {
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  border-bottom: 4px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-bar a:hover {
  border-color: #2196f3;
  color: #2196f3;
}

.btn {
  margin-left: auto; /* Pousse le bouton "Se connecter" à l'extrémité droite */
}

.btn a {
  color: white;
  text-decoration: none;
  border: 2px solid #2196f3;
  border-radius: 4px;
  padding: 8px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: "Montserrat", sans-serif; /* Application de la police Montserrat */
}

.btn a:hover {
  background-color: #2196f3;
  color: white;
}
/*
.nav-button {
  display: inline-block;
  white-space: normal;
  vertical-align: middle;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  border: none;
  border-bottom: 6px solid #4c2f62 !important;
  padding: 8px 16px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav-button:hover {
  border-color: #2196f3 !important;
  color: #2196f3 !important;
}
*/
.hero {
  height: 600px;
  display: flex;
}

.hero-image {
  width: 70%;
  background-image: url("/public/assets/images/Digital_collage_symbols_entrepreneurship_Guadeloupe.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto; /* Ajuste l'image pour couvrir tout l'élément sans changer son ratio */
}

.hero-intro {
  text-align: left; /* Centrer le contenu */
  padding: 20px;
  color: white;
  max-width: 700px;
  margin: auto; /* Centrer horizontalement */
}

.hero-intro h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700; /* Bold */
  font-size: 2.5em;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out; /* Animation dynamique */
}

.hero-intro h1 .highlight {
  color: #ffd700; /* Mettre en avant un mot */
  font-style: italic;
}

.hero-intro p {
  font-family: "Poppins", sans-serif;
  font-weight: 300; /* Light */
  font-size: 1.2em;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease-out; /* Animation pour le paragraphe */
}

.hero-intro .btn-primary {
  font-family: "Poppins", sans-serif;
  font-weight: 600; /* Semi-bold */
  font-size: 1.1em;
  text-align: center;
  padding: 15px 30px;
  border-radius: 30px; /* Boutons arrondis */
  background-color: #007bff;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease; /* Animation de transition */
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* Effet de profondeur */
}

.hero-intro .btn-primary:hover {
  background-color: #0056b3; /* Changement de couleur au survol */
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2); /* Renforcer l'effet de profondeur */
  transform: translateY(-3px); /* Effet de levée */
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features {
  display: flex;
  justify-content: center; /* Centre horizontalement */
  margin: 50px auto;
  height: 400px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  margin: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: white;
}

.feature-item-1 {
  background: linear-gradient(
    to bottom,
    #f1a43f,
    #cf3657
  ); /* Dégradé vert turquoise */
}

.feature-item-2 {
  background: linear-gradient(
    to bottom,
    #f35366,
    #7739d6
  ); /* Dégradé vert turquoise */
}

.feature-item-3 {
  background: linear-gradient(
    to bottom,
    #3cece5,
    #3554cd
  ); /* Dégradé vert turquoise */
}

.testimonials {
  text-align: center;
  background-color: darkgray;
  padding: 20px;
}

.cta {
  background-color: white;
}
