
/* ---------- STYLE DE LA SECTION "NOS COURS" ---------- */

.language-courses {
  background: linear-gradient(to bottom, #ffffff, #eef3f8);
  padding: 80px 30px;
  text-align: center;
}

.language-courses h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #2d4059;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.course-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.course-code {
  display: inline-block;
  background: #ff007f;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.95em;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.course-card h3 {
  font-size: 1.1em;
  margin: 10px 0 8px;
  color: #2d4059;
}

.course-card p {
  font-size: 0.95em;
  color: #777;
  margin: 0;
}

.view-all-container {
  margin-top: 40px;
  text-align: center;
}
.course-intro {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
  line-height: 1.6;
}
