/* ===========================
   Global
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo Play', sans-serif;
  background: #EDF2F4;
  color: #04168a;
}

/* ===========================
   Navbar
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ff0000;
  padding: 0.8rem 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.navbar .logo {
  color: #EDF2F4;
  font-family: 'Cairo Play', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar .logo:hover {
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.nav-links li a {
  color: #EDF2F4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links li a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* CTA button */
.navbar .btn {
  background: #160376;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.navbar .btn:hover {
  background: #0f024f;
  transform: scale(1.05);
}

/* Burger */
.burger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: #EDF2F4;
  transition: transform 0.3s ease;
}

.burger:hover {
  transform: rotate(90deg);
}

/* ===========================
   Responsive Navbar
=========================== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #021bba;
    width: 100%;
    height: 0;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: height 0.4s ease;
  }

  .nav-links.active {
    height: 280px; /* ajustable selon le nombre de liens */
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .navbar .btn {
    display: none; /* cacher le bouton sur mobile si nécessaire */
  }

  .burger {
    display: block;
  }
}


/* ================== HERO ================== */
#hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

#hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 1rem;
  padding: 0 1rem;
  color: #EDF2F4;
}

#hero h1 {
  font-size: 2.5rem;
}

#hero h1 span {
  color: #ff0000;
}

#hero p {
  font-size: 1.2rem;
}

#hero .cta .btn {
  background: #ff0000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

#hero .cta .btn:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

#hero .cta .btn-light {
  background: rgba(255,255,255,0.2);
  color: #EDF2F4;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

#hero .cta .btn-light:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ================== STORYTELLING ================== */
#storytelling {
  padding: 4rem 1rem;
  background: #fff;
  color: #2B2E42;
}

.story-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.story-image {
  flex: 1 1 400px;
  text-align: center;
}

.story-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.story-image img:hover {
  transform: scale(1.05);
}

.story-content {
  flex: 1 1 500px;
}

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fe0000;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.story-content p span {
  font-weight: 700;
  color: #2B2E42;
}

.story-benefits {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.story-benefits li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.story-benefits li i {
  color: #d80505;
  margin-right: 0.6rem;
}

.story-content .btn {
  background: #fb0e02;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.story-content .btn:hover {
  background: #3c00ff;
  transform: translateY(-2px);
}

/* ================== ÉQUIPE ================== */
#team {
  padding: 4rem 1rem;
  background: #f5f5f5;
  color: #2B2E42;
}

#team h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  flex: 1 1 250px;
  text-align: center;
}
.team-member img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* ================== TÉMOIGNAGES ================== */
.testimonial-card {
  flex: 1 1 300px;
  background: #fff; /* fond clair */
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02); /* léger zoom + levée */
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.testimonial-card h4 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #ff0101;
  transition: color 0.3s ease;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* Étoiles de notation */
.testimonial-card .stars {
  margin: 0.5rem 0;
  color: #FFD700; /* doré */
  font-size: 1rem;
}

.testimonial-card .stars i {
  margin-right: 0.2rem;
}


/* ================== FOOTER ================== */
footer {
  background: #f61b02;
  color: #EDF2F4;
  padding: 3rem 1rem 1rem 1rem;
  font-family: 'Cairo Play', sans-serif;
}

footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

footer .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .footer-logo img {
  width: 150px;
  object-fit: contain;
}

footer .footer-contact,
footer .footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer .footer-contact a,
footer .footer-socials a {
  color: #EDF2F4;
  text-decoration: none;
  transition: 0.3s;
}

footer .footer-contact a:hover,
footer .footer-socials a:hover {
  color: #fff;
}

footer .footer-socials {
  flex-direction: row;
  gap: 1rem;
  margin-top: 0.5rem;
}

footer .footer-socials a {
  font-size: 1.5rem;
}

footer .footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #EDF2F4;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .footer-socials {
    justify-content: center;
  }

  footer .footer-logo img {
    width: 120px;
  }
}


#persuasive-text {
  padding: 5rem 1.5rem;
  background: #ffffff;
  color: #2B2E42;
  text-align: center;
}

.persuasive-container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.2rem;
}

#persuasive-text h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #d80505;
}

#persuasive-text p {
  margin-bottom: 1.8rem;
}

#persuasive-text .pain {
  color: #d80505;
  font-weight: bold;
}

#persuasive-text .gain {
  color: #2B2E42;
  font-weight: 700;
  background: #f5f5f5;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

#persuasive-text .closing {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-top: 2rem;
}

.btn-action {
  display: inline-block;
  background: #d80505;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 2rem;
}

.btn-action:hover {
  background: #ee2424;
  transform: translateY(-3px);
}
