/* Importation des polices */
@font-face {
  font-family: 'CooperBT';
  src: url('Fonts/CooperBlkBT-Regular.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* Variables de couleurs */
:root {
  --primary-color: #beade6;
  --secondary-color: #000;
  --background-color: #fff;
  --text-color: #333;
}

/* Réinitialisation de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'CooperBT', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-title {
  font-size: 4rem;
  color: transparent;
  -webkit-text-stroke: 2px #000;
  text-stroke: 2px #000;
  z-index: 1;
  position: relative;
  margin-bottom: 2rem;
}

/* Effet verre sur le bouton */
.glass-button {
  padding: 1rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.3);
}


/* ABOUT SECTION */
.about {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  align-items: center;
  background-image: url(Images/Background_blanc_40.png);
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
  padding: 20px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: -30px 10px 4px #cbcbcb;
}

.about-text {
  flex: 1 1 60%;
  padding: 20px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text .highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.about-text p {
  margin-bottom: 15px;
}

/* FORMATIONS SECTION */
.formations {
  background-image: url(Images/Background_40.png);
  color: var(--background-color);
  padding: 60px 20px;
  text-align: center;
}

.formations h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.formations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.formation-card {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: left;
}

.formation-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.formation-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.formation-card p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* SPECIALTIES SECTION */
.specialties {
  padding: 60px 20px;
  background-image: url(Images/Background_blanc_40.png);
  text-align: center;
}

.specialties h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.specialties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.specialty-card {
  background-color: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  transition: transform 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-5px);
}

.specialty-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.specialty-card p {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }

  .formations-grid,
  .specialties-grid {
    flex-direction: column;
    align-items: center;
  }

  .formation-card,
  .specialty-card {width ::contentReference[oaicite:17]{index=17}