/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #071629;
    color: white;
  }
  
  /* Header */
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }
  
  header img {
    height: 30px;
  }
  
  nav {
    display: flex;
    gap: 30px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(
      360deg,
      rgba(7, 22, 41, 0.8) 0%,
      rgba(7, 22, 41, 0.6) 30%,
      rgba(7, 22, 41, 0.4) 60%,
      rgba(7, 22, 41, 0) 100%
    ), 
    url("images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 100vh;
    padding-top: 220px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  
  .hero-section h1 {
    font-size: 120px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: white;
  }
  
  
  .hero-section p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 30px;
  }
  .hero-section p span {
    margin: 0 12px;
  }
  
  
  .hero-section button {
    background-color: #c271ff;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    /* width: 162px; */
    height: 44px;
    margin: 20px auto 0 auto; /* Centrage horizontal */
    display: block; /* Nécessaire pour margin auto */
  }
  /* box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.5);
  } */
  
  /* Learn from the pros */
  .pros-section {
    margin-top: 100px;
    text-align: center;
    width: 1009px;
    height: 40px;
  }
  .pros-section h2 {
    font-size: 32px;
    font-weight: 300; /* LIGHT pour "from the pros" */
    margin-bottom: 60px;
    color: white;
  }
  
  .pros-section h2 span {
    font-weight: 700; /* BOLD pour "Learn" */
    color: #c271ff;
  }
  
  
  
  .pros-container {
    width: 1009px;
    height: 237px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: nowrap;
  }
  .pro-card {
    width: 150px;
    height: 237px;
    text-align: center;
  }
  .pro-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  .pro-card h3 {
    width: 150px;
    height: 27px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-transform: none; /* Garde le nom capitalisé comme dans l’image */
  }
  .pro-card p {
    width: 150px;
    height: 48px;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    /* line-height: 1.5; */
    color: white;
    /* text-transform: uppercase; */
    /* text-transform: lowercase; */
    text-transform: none; /* Garder en minuscules comme dans l'image */
  }
  
  /* --------------- */
  /* Quotes Section */
.quote-section {
    background-color: #c271ff; /* fond violet */
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .quote-container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    padding: 0 20px;
  }
  
  .quote-container img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 40px;
  }
  
  .quote-content {
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
  }
  
  .quote-content blockquote {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); /* Ombre noire douce */
  }
  
  .quote-content p.name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .quote-content p.title {
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    margin: 0;
  }
  

    /* --------------- */
    /* Videos Section */
.videos-section {
    background-color: white;
    padding: 80px 0;
    text-align: center;
  }
  
  .videos-section h2 {
    font-size: 32px;
    font-weight: 300;
    color: #071629;
    margin-bottom: 60px;
  }
  
  .videos-section h2 span {
    color: #c271ff;
    font-weight: 700;
  }
  
  /* Container for all cards */
  .videos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Individual video card */
  .video-card {
    width: 255px;
    background-color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  
  /* Thumbnail section with play button overlay */
  .video-thumbnail {
    position: relative;
    width: 255px;
    height: 154px;
    overflow: hidden;
  }
  
  .video-thumbnail img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-thumbnail img:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
  }
  
  /* Title of the video */
  .video-title {
    font-size: 16px;
    font-weight: 700;
    color: #071629;
    margin: 20px 0 10px 0;
    padding: 0 10px;
  }
  
  /* Short description */
  .video-description {
    font-size: 14px;
    font-weight: 400;
    color: #071629;
    padding: 0 10px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  
  /* Author section with avatar */
  .video-author {
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 10px;
  }
  
  .video-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
  }
  
  .video-author h3 {
    font-size: 14px;
    font-weight: 600;
    color: #c271ff;
    margin: 0;
    line-height: 27px;
  }
  
  /* Rating and duration */
  .video-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin-bottom: 30px;
  }
  
  .video-rating .stars {
    display: flex;
  }
  
  .video-rating .stars img {
    height: 15px;
    width: auto;
    margin-right: 2px;
    object-fit: contain;
  }
  
  .video-rating p {
    font-size: 14px;
    color: #c271ff;
    font-weight: 600;
    margin: 0;
    line-height: 27px;
  }
  
  /* ------ */
  /* Free Membership Section */
.membership-section {
    background-color: #071629;
    color: white;
    text-align: center;
    padding: 80px 0;
  }
  
  .membership-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 60px;
  }
  
  .membership-section h2 span {
    color: #c271ff;
    font-weight: 700;
  }
  
  /* Dots container */
  .membership-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  
  .membership-card {
    width: 257px;
    height: 153px;
    color: white;
  }
  
  .membership-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
  }
  
  .membership-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .membership-card p {
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 24px;
    margin: 0;
  }
  
  /* Call to Action Button */
  .membership-section button {
    background-color: #c271ff;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  

  /* --- */
  /* FAQ Section */
.faq-section {
    background-color: white;
    color: #071629;
    text-align: center;
    padding: 80px 0;
  }
  
  .faq-section h2 {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 70px;
    font-family: 'Source Sans Pro', sans-serif;
  }
  
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }
  
  .faq-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .faq-item {
    width: 350px;
    text-align: left;
  }
  
  .faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #071629;
    margin-bottom: 15px;
  }
  
  .faq-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #071629;
    opacity: 0.5;
  }
  

  /* ---- */
  footer {
    background-color: #071629;
    color: white;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  footer img {
    height: 30px;
  }
  
  footer .social-icons {
    display: flex;
    gap: 20px;
  }
  
  footer .social-icons img {
    width: 30px;
    height: 30px;
  }
  
  footer p {
    color: white;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.35;
    margin-top: 30px;
    text-align: center;
  }
  