/* Importation de la police Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Style global */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdf2e9;
  color: #333;
}

.home-page {
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start; /* Aligne le contenu sur la gauche */
  align-items: flex-end; /* Positionne le contenu en bas */
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.home-page:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Filtre noir */
  z-index: 1;
}

.home-content {
  text-align: left;
  color: white;
  padding: 40px;
  z-index: 2;
  position: relative;
}

.home-content-text {
  max-width: 600px;
}

.home-content-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #ff6d00;
  margin-bottom: 10px;
}

.home-content-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.home-content-button {
  display: inline-block;
  background-color: #ff6d00;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.home-content-button:hover {
  background-color: #e65c00;
}

.home-explain {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px;
  gap: 30px;
}

.home-explain-text {
  max-width: 700px;
}

.home-explain-text h2 {
  font-size: 28px;
  color: #ff6d00;
  margin-bottom: 15px;
}

.home-explain-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

.home-explain-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-explain-mascot img {
  max-width: 400px;
  height: auto;
  margin-left: 400px;
}

.home-functions {
  background-color: #fdf2e9;
  padding: 40px;
  text-align: center;
  margin-top: 100px;
}

.home-functions-title h2 {
  font-size: 28px;
  color: #ff6d00;
  margin-bottom: 10px;
}

.home-functions-title p {
  font-size: 18px;
  color: #666;
}

.home-functions-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.home-functions-card {
  background-color: #ff6d00;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-functions-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  .home-functions-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-functions-cards {
    grid-template-columns: 1fr;
  }
}

.quiz-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  background-color: #fdf2e9;
}
.quiz-box {
  display: flex;
  align-items: center;
  background-color: #ff6d00;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  width: 100%;
  text-align: left;
}
.quiz-box img {
  width: 120px;
  height: auto;
  margin-right: 30px;
}
.quiz-text {
  flex: 1;
}
.quiz-text h3 {
  font-size: 26px;
  color: white;
  margin-bottom: 15px;
}
.quiz-text p {
  font-size: 18px;
  color: white;
}
.quiz-button {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 18px;
  margin-left: 20px;
}
.quiz-button:hover {
  background-color: #222;
}

.home-explain-text h2 {
  font-size: 28px;
  color: #ff6d00;
  margin-bottom: 15px;
  text-align: left; 
}

.home-explain-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  text-align: left; 
}

/* Responsive styles */
@media (max-width: 768px) {

  .quiz-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ff6d00;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
    text-align: left;
  }

  .home-page {
    align-items: center;
    text-align: center;
  }

  .home-content {
    padding: 20px;
  }

  .home-content-title {
    font-size: 32px;
  }

  .home-content-subtitle {
    font-size: 20px;
  }

  .home-content-button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .home-explain {
    flex-direction: column;
    padding: 20px;
  }

  .home-explain-mascot img {
    margin-left: 0;
    max-width: 100%;
  }

  .home-explain-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .home-content-title {
    font-size: 28px;
  }

  .home-content-subtitle {
    font-size: 18px;
  }

  .home-content-button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .home-functions-cards {
    grid-template-columns: 1fr;
  }

  .quiz-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ff6d00;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
    text-align: left;
  }
}

