 /* 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;
      }


  
  /* Main content styles */
  .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .page-title {
    position: relative;
    color: rgba(218, 212, 212, 1);
    font-size: 48px;
    font-weight: 600;
    line-height: 70px;
    text-align: center;
    margin-top: 180px; /* Increased to move content down */
  }
  
  .contact-form-section {
    position: relative;
    border-radius: 20px;
    margin-top: 60px;
    width: 980px; /* Reduced width */
    max-width: 100%;
    font-size: 24px; /* Smaller font size */
    color: rgba(160, 153, 153, 1);
    font-weight: 400;
    line-height: 2.2; /* Reduced line height */
  }
  
  .form-container {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    position: relative;
    min-height: 900px; /* Reduced height */
    width: 100%;
    padding: 70px 60px; /* Reduced padding */
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .form-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
  }
  
  .contact-form {
    position: relative;
    width: 760px; /* Reduced width */
    max-width: 100%;
  }
  
  .form-field {
    margin-bottom: 40px; /* Reduced margin */
  }
  
  .form-input {
    width: 100%;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(200, 81, 29, 1);
    padding: 22px; /* Reduced padding */
    color: rgba(160, 153, 153, 1);
    font-family:
      "Maven Pro",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 22px; /* Smaller font size */
    outline: none;
  }
  
  .form-textarea {
    height: 300px; /* Reduced height */
    resize: none;
  }
  
  .submit-container {
    position: relative;
    border-radius: 20px;
    margin-top: 60px; /* Reduced margin */
    width: 350px; /* Reduced width */
    max-width: 100%;
    font-size: 28px; /* Smaller font size */
    color: rgba(248, 134, 20, 1);
    font-weight: 600;
    text-align: center;
  }
  
  .submit-button {
    width: 100%;
    border-radius: 20px;
    background-color: rgba(200, 81, 29, 0.1);
    border: 2px solid rgba(200, 81, 29, 1);
    padding: 15px 30px; /* Reduced padding */
    color: rgba(248, 134, 20, 1);
    font-family:
      "Maven Pro",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 28px; /* Smaller font size */
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 200px;
  } 

  .submit-button:hover {
    background-color: rgba(200, 81, 29, 0.2);
    transform: translateY(-3px);
  }
  
  .submit-button:active {
    transform: translateY(0);
  } 

  /* Success message styles */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(200, 81, 29, 1);
    border-radius: 20px;
    padding: 20px 30px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .success-message.show {
    display: block;
    opacity: 1;
  }
  
  .success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .success-icon {
    font-size: 40px;
    color: rgba(248, 134, 20, 1);
    margin-bottom: 10px;
  }
  
  .success-message p {
    color: rgba(218, 212, 212, 1);
    font-size: 22px;
    font-weight: 500;
    margin: 0;
  }
  
  



      .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;
        }
      }

}      