@font-face {
    font-family: 'Agdasima-Bold';
    src: url('../fonts/Agdasima-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal; 
}

@font-face {
    font-family: 'Agdasima-Regular';
    src: url('../fonts/Agdasima-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal; 
}


* {
    box-sizing: border-box;
}

body {
    background-color:black;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    margin: 0px;
    font-family: 'Agdasima-Regular', sans-serif;
    flex-direction: column;
    font-size: 20px;
}

body::-webkit-scrollbar {
    display: none;
}

h4, h3 {
    font-family: 'Agdasima-Bold', sans-serif;
    color: #3ef941;
}

a {
    font-family: 'Agdasima-Bold', sans-serif;
    color: #3ef941;
}

/* ==================== intro =========================== */


.blocIntro {
    display: flex;
    justify-content: center;
    padding: 15px;
    color : white;
}

.photoId {
    width: 150px;
    height: auto;
    margin: auto;
    border-radius: 5px;
}

quote {
    margin-bottom: 5px;
}

.headerIntro {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #3ef941;
    border-radius: 5px;
    background: radial-gradient(circle, rgb(20, 20, 20) 0%, #0e0e0e 45%);
    box-shadow: 0 4px 8px #3ef941;
}

.bodyIntro {
    padding: 40px;
    text-align: justify;
}

.contactIntro>ul>li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
.blocIntro {
    flex-direction: column;
  }
}

/* =================== skills ============= */

.blocSkills {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color : white;
  }
  
  .rowSkills {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 50px;
  }
  
  .column {
    flex: 1 1 45%;
    background: radial-gradient(circle, rgb(20, 20, 20) 0%, #0e0e0e 45%);
    border: 1px solid #3ef941;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 8px #3ef941;
    margin: 10px 0;
  
  }
  
  .column > h3 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 24px;
    border-bottom: 2px solid #3ef941;
    padding-bottom: 5px;
  }
  
  .column ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .column li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fdfffd;
  }
  
  .column li svg {
    margin-left: 20px;
  }
  
  .otherSkills > h3 {
    text-align: center;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.5rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
  }
  
  .otherSkills>p {
    text-align: justify;
  }
  
  @media (max-width: 768px) {
    .rowSkills > div {
        flex: 1 1 100%; /* Chaque div prend 100% de la largeur sur mobile */
    }
  
  }
  

/* ======================= trophy ==================== */

.blocTrophy {
    padding: 15px;
    color: white;
    display : flex;
    flex-direction: column;
}

.quoteFirst {
  align-self: center;
}

.captureTel {
    width : 100px;
    height : auto;
    align-self: center;
  }
  
  .capturePc {
    height: 200px;
    width : auto;
    align-self: center;
  }
  
  .row {
    display : flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  
  .eyeIcon {
    vertical-align: middle;
    margin-left: 2px;
  }
  
  .eyeIcon:hover {
    fill : #3ef941;
  }
  
  .project {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
  }
  
  .project:hover {
    transition: all ease-in 0.3s;
    background-color: rgba(70, 70, 70,0.2);
    box-shadow: rgba(62, 249, 65, 0.4) 0px 0px 0px 2px, rgba(62, 249, 65, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  }
  
  .project>h5 {
    align-self: center;
    font-family: 'Agdasima-Bold', sans-serif;
    color: #3ef941;
    font-size: 20px;
  }
  
  .project>a {
    display: flex;
    justify-content: center;
  }


/* ========================== FAQ =================================== */

.accordion {
    width: 80vw;
    margin: auto;
    margin-top: 20px;
  }
  
  .accordion-item {
    margin-bottom: 5px;
  }
  
  .accordion-header {
    background-color: #3ef941;
    font-family: 'Agdasima-Bold', sans-serif;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    color: rgb(0, 0, 0);
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
  }
  
  .accordion-content {
    transition: max-height 0.6s ease;
    padding: 10px;
    overflow: hidden;
    background: radial-gradient(circle, rgb(20, 20, 20) 0%, #0e0e0e 45%);
    color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    max-height: 0;
    display: none;
    text-align: justify;
  }
  
  .accordion-content.active {
    display: block;
    max-height: 1000px;
  }

  .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .arrow.active {
    transform: rotate(180deg);
  }


  /* =================== contact ============ */

  .blocContact {
    display : flex;
    justify-content: center;
    flex-direction: column;
    font-family: 'Agdasima-Bold', sans-serif;
  }
  
  .questionContact {
    align-self: center;
    color: #fff;
  }
  
  #contact-form {
    background: radial-gradient(circle, rgb(20, 20, 20) 0%, #0e0e0e 45%);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(62, 249, 65, 0.4) 0px 0px 0px 2px, rgba(62, 249, 65, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  }
  
  .rowContact {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
  }
  
  .rowContact div {
    flex: 1;
  }
  
  #contact-form label {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
  }
  
  #contact-form input,
  #contact-form textarea {
    background-color: #ffffff;
    color: #000000;
    outline: none;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
    margin: auto;
    font-size: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    outline: none;
    font-family: 'Agdasima-Bold', sans-serif;
  }
  
  #contact-form input:focus,
  #contact-form textarea:focus {
    background-color: rgba(62, 249, 65);
    color: #000000;
    outline: none;
  }
  
  #contact-form textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  #contact-form .asterisque {
    color: #e74c3c;
    font-weight: bold;
    font-size: 20px;
  }
  
  .buttonform {
    margin: auto;
  }
  
  .buttonform button {
    border: none;
    flex : 1;
    font-family: 'Agdasima-Bold', sans-serif;
    font-size: 20px;
    padding: 20px 40px 20px 40px;
    box-shadow: rgba(62, 249, 65, 0.4) 0px 0px 0px 2px, rgba(62, 249, 65, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    color: #3ef941;
    background-color:#000000;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
  }
  
  .buttonform button:hover {
    scale: 1.2;
    color: #ffffff;
    background-color:#3ef941;
  }
  
  .buttonform button:active {
    transform: scale(0.98);
  }

  .buttonLoading .buttonText {
    visibility: hidden;
    opacity: 0;
  }
  
  .buttonLoading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
  }
  
  @keyframes button-loading-spinner {
    from {
      transform: rotate(0turn);
    }
  
    to {
      transform: rotate(1turn);
    }
  }

  #email201 {
    background-color: #3ef941;
    color: #000000;
    text-align: center;
  }

  #email400, #email401 {
    background-color: #e74c3c;
    color: #fff;
    text-align: center;
  }