 /* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none; /* Empêche la sélection de texte */
  }
  
  body {
    font-family: "Maven Pro", sans-serif;
    background-color: #1a0f0f;
    color: #dad4d4;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  } 
  
  /* Main page container */
  .accueil-page {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
  }

    /* Header styles */
    .main-header {
        position: absolute;
        z-index: 100;
        width: 1244px;
        max-width: 100%;
        padding: 0 39px;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        height: 95px;
      }
      
      .header-container {
        border-radius: 20px;
        background-color: rgba(169, 87, 5, 0.05);
        border: 1px solid rgba(200, 81, 29, 0.5);
        display: flex;
        width: 1167px;
        padding-right: 20px;
        align-items: center;
        justify-content: space-between;
        height: 100%;
      }

      .logo-container {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 22px;
        color: #f88614;
        font-weight: 700;
      }
      
      .logo-image {
        aspect-ratio: 1;
        object-fit: contain;
        object-position: center;
        width: 94px;
        flex-shrink: 0;
      }

      .company-name {
        text-shadow: 0px 4px 5px rgba(200, 81, 29, 1);
        font-size: 22px;
      }

      .main-navigation {
        display: flex;
        align-items: center;
        gap: 39px;
        font-size: 20px;
        color: #dad4d4;
        font-weight: 600;
        flex-wrap: wrap;
    }

    .nav-link {
        color: #dad4d4;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        padding: 5px 10px;
      }
      
      .nav-link:hover {
        color: #f88614;
        text-shadow: 0 0 5px rgba(248, 134, 20, 0.3);
      }
      
      .nav-link:not(.contact-button)::before,
      .nav-link:not(.contact-button)::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: #f88614;
        transition: width 0.3s ease;
      }
      
      .nav-link:not(.contact-button)::before {
        top: 0;
        left: 0;
      }
      
      .nav-link:not(.contact-button)::after {
        bottom: 0;
        right: 0;
      }
      
      .nav-link:not(.contact-button):hover::before,
      .nav-link:not(.contact-button):hover::after {
        width: 100%;
      }


      .nav-link:not(.contact-button)::before,
      .nav-link:not(.contact-button)::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: #f88614;
        transition: width 0.3s ease;
      }
      
      .nav-link:not(.contact-button)::before {
        top: 0;
        left: 0;
      }
      
      .nav-link:not(.contact-button)::after {
        bottom: 0;
        right: 0;
      }
      
      .nav-link:not(.contact-button):hover::before,
      .nav-link:not(.contact-button):hover::after {
        width: 100%;
      }
      
      .contact-button {
        color: #c8511d;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 180px;
        height: 59px;
        border-radius: 15px;
        border: 2px solid #c8511d;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
      }
      
      .contact-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #c8511d;
        transition: all 0.4s ease;
        z-index: -1;
      }
      
      .contact-button:hover {
        color: white;
        cursor: pointer;
      }
      
      .contact-button:hover::before {
        left: 0;
      }



/* Hero section */
.hero-section {
    display: flex;
    width: 1256px;
    height: 581px;
    margin-top: 95px;
    justify-content: center; /* Centre horizontalement */
    position: relative;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin-left: 260px;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    margin-left: 130px;
    width: 1256px;
  }
  
  .hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    color: #dad4d4;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 1168px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    margin-left: 130px;
  }
  
  /* Info section */
.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 95px;
    margin-top: 95px;
    text-align: center;
  }
  
  .info-block {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .info-text-container {
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
  
  .info-heading {
    color: #dad4d4;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
  }
  
  .info-paragraph {
    color: #dad4d4;
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  /* Funding cards */
  .funding-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 1300px;
  }
  
  .funding-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .funding-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 748px;
    height: 84px;
    border-radius: 50px;
    color: #f88614;
    font-size: 24px;
    font-weight: 700;
    background-image: url("https://cdn.builder.io/api/v1/image/assets/TEMP/5d94b740ecbf011097c01e8310695120caa61d42");
  }
  
  .funding-description {
    color: #dad4d4;
    font-size: 24px;
    text-align: center;
    margin-top: 40px;
    max-width: 1300px;
    line-height: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .learn-more-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 233px;
    height: 62px;
    border-radius: 15px;
    border: 2px solid #c8511d;
    background-color: rgba(200, 81, 29, 0.1);
    color: #f88614;
    font-size: 20px;
    font-weight: 700
  }
  
  .learn-more-button:hover {
    background-color: rgba(200, 81, 29, 0.2);
    transform: translateY(-3px);
  }
  
  .learn-more-button:active {
    transform: translateY(0);
  } 

  /* Services section */
  .services-section {
    width: 1267px;
    height: 378px;
    position: relative;
    margin-top: 60px;
    margin-left: 125px;
  }
  
  .services-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
  }
  
  .services-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
  }
  
  .services-title {
    color: #d9d9d9;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .services-description {
    color: #d9d9d9;
    font-size: 30px;
    line-height: 40px;
  }
  
  .highlight {
    color: #f88614;
    font-weight: 700;
  }
  
  /* CTA section */
  .cta-section {
    width: 1256px;
    height: 301px;
    position: relative;
    margin-top: 60px;
    margin-left: 125px;
  }
  
  .cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .cta-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    border: 1px solid #c8511d;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
  }
  
  .cta-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dad4d4;
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    padding-left: 44px;
    padding-right: 44px;
    font-size: 56px;
    text-shadow: 0px 4px 4px #000;
  }











      .main-footer {
        background-color: rgba(200, 81, 29, 0.3);
        margin-top: 40px;
      }

      .footer-content {
        display: flex;
        justify-content: space-between;
        padding: 42px 129px;
      }
      
      @media (max-width: 991px) {
        .footer-content {
          padding: 42px 40px;
          flex-direction: column;
          gap: 40px;
        }
      }

      .footer-branding {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .footer-logo {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 22px;
        color: #f88614;
        font-weight: 700;
      }

      .logo-image-footer {
        aspect-ratio: 1;
        object-fit: contain;
        object-position: center;
        width: 94px;
        flex-shrink: 0;
      }

      .company-name-footer {
        text-shadow: 0px 4px 5px rgba(200, 81, 29, 1);
        font-size: 22px;
      }

      .social-link {
        width: 60px;
        height: 60px;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }


      .social-links {
        display: flex;
        margin-top: 15px;
        margin-left: 12px;
        gap: 22px;
      }
    
      .social-links a:hover .social-icon {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
      
      .social-links a:hover .social-icon {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }


      .social-links a:hover .social-icon {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
      
      .social-links a:hover .social-icon {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
      
      .social-icon {
        aspect-ratio: 1;
        object-fit: contain;
        object-position: center;
        width: 60px;
      }


      .footer-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
      }
    
      
      @media (max-width: 640px) {
        .footer-navigation {
          grid-template-columns: repeat(1, minmax(0, 1fr));
        }
      }


      .footer-link {
        color: #dad4d4;
        font-size: 24px;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
      }
    
      .footer-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    
      }

  /* Responsive styles */
  @media (max-width: 991px) {
    .main-header {
      padding: 0 20px;
    }

    .contact-button {
        white-space: normal;
      }

      @media (max-width: 640px) {
        .footer-content {
          padding: 42px 20px;
        }
      }

}