@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

main {
  margin-top: 50px;
  padding-bottom: 60px;
  min-height: 100vh;
}

.titre {
  text-align: center;
  font-style: italic;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.titre::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(51, 51, 51, 0.2), transparent);
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
}
.main-header.scroll-down {
  transform: translateY(-50%);
}
.main-header.scroll-up {
  transform: translateY(0);
}
.main-header.menu-open {
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header-container {
    padding: 0 30px;
  }
}

.logo {
  text-decoration: none;
}
.logo .logo-circle {
  width: 40px;
  height: 40px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.logo .logo-circle:hover {
  transform: scale(1.1);
}

.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}
.burger-menu.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 60px;
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.main-nav.active {
  transform: translateX(0);
}
.main-nav ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  background-color: white;
  width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.main-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 15px;
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.main-nav .nav-link i {
  margin-right: 15px;
  width: 24px;
  text-align: center;
  color: #ff6b6b;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.btn-primary {
  background-color: #ff6b6b;
  color: white;
}
.btn-primary:hover {
  background-color: rgb(255, 81.5, 81.5);
}

.btn-secondary {
  background-color: #333;
  color: white;
}
.btn-secondary:hover {
  background-color: rgb(38.25, 38.25, 38.25);
}

.hero-section {
  min-height: calc(100vh - 70px - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title, .hero-subtitle, .hero-buttons {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
  animation-delay: 0.2s;
}

.hero-subtitle {
  animation-delay: 0.4s;
}

.hero-buttons {
  animation-delay: 0.6s;
}

/*?blockPresentation*/
.blockPresentationPresentation {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.blockPresentationPresentation__titre {
  text-align: center;
  font-style: italic;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.blockPresentationPresentation__titre::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(51, 51, 51, 0.2), transparent);
}
.blockPresentationPresentation__contenu {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.blockPresentationPresentation__description {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  line-height: 1.6;
  color: #333;
}

/*?fin blockPresentation*/
/*!Présentation profils*/
.profil {
  text-align: center;
  margin-bottom: 3rem;
}
.profil__image-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #ff6b6b;
}
.profil__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profil__image:hover {
  transform: scale(1.1);
}
.profil__nom {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.profil__titre {
  font-size: 1.1rem;
  color: #666666;
}

/*!fin Présentation profils*/
.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 3rem 0 2rem;
  color: #333;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ff6b6b;
  border-radius: 3px;
}

.skills-grid, .tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.skills-category, .tools-category {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skills-category:hover, .tools-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.skills-category__header, .tools-category__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.skills-category__header i, .tools-category__header i {
  font-size: 1.5rem;
  color: #ff6b6b;
  margin-right: 1rem;
}
.skills-category__header h3, .tools-category__header h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 0;
}

.skills-list, .tools-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 1rem;
}

.skill-item, .tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.skill-item .skill-logo, .skill-item .tool-logo, .tool-item .skill-logo, .tool-item .tool-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background-color: white;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.skill-item .skill-logo img, .skill-item .tool-logo img, .tool-item .skill-logo img, .tool-item .tool-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.skill-item .skill-logo img:hover, .skill-item .tool-logo img:hover, .tool-item .skill-logo img:hover, .tool-item .tool-logo img:hover {
  transform: scale(1.1);
}
.skill-item .skill-name, .skill-item .tool-name, .tool-item .skill-name, .tool-item .tool-name {
  font-size: 0.9rem;
  color: #333;
}

@media (max-width: 768px) {
  .skills-grid, .tools-grid {
    grid-template-columns: 1fr;
  }
  .skills-list, .tools-list {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
  .skill-logo, .tool-logo {
    width: 50px;
    height: 50px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blockPresentationPresentation {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: forwards;
}

.profil {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: forwards;
}

.profil:nth-child(1) {
  animation-delay: 0.2s;
}

.profil:nth-child(2) {
  animation-delay: 0.4s;
}

.profil:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.skill-logo, .tool-logo {
  opacity: 0;
  transform: scale(1);
  animation: fadeInScale 0.5s ease-out forwards;
}

.skill-logo:nth-child(1), .tool-logo:nth-child(1) {
  animation-delay: 0.1s;
}

.skill-logo:nth-child(2), .tool-logo:nth-child(2) {
  animation-delay: 0.2s;
}

.skill-logo:nth-child(3), .tool-logo:nth-child(3) {
  animation-delay: 0.3s;
}

.skill-logo:nth-child(4), .tool-logo:nth-child(4) {
  animation-delay: 0.4s;
}

.skill-logo:nth-child(5), .tool-logo:nth-child(5) {
  animation-delay: 0.5s;
}

.skill-logo:nth-child(6), .tool-logo:nth-child(6) {
  animation-delay: 0.6s;
}

.skill-logo:nth-child(7), .tool-logo:nth-child(7) {
  animation-delay: 0.7s;
}

.skill-logo:nth-child(8), .tool-logo:nth-child(8) {
  animation-delay: 0.8s;
}

/*!fin de page*/
/*?début*/
.projets {
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
}
.projets__grille {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/*?fin de page*/
/*!début*/
.recherche {
  max-width: 800px;
  margin: 50px auto 4rem;
}
.recherche__barre {
  position: relative;
  margin-bottom: 2rem;
}
.recherche__input {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  border: 2px solid rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.recherche__input:focus {
  outline: none;
  border-color: #ff6b6b;
}
.recherche__icone {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(51, 51, 51, 0.5);
}
.recherche__filtres {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/*!fin de page*/
/*?début*/
.filtre-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  background-color: rgba(51, 51, 51, 0.1);
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filtre-btn:hover {
  background-color: rgba(255, 107, 107, 0.2);
}
.filtre-btn.actif {
  background-color: #ff6b6b;
  color: white;
}

/*?fin de page*/
/*!début*/
.projet-carte {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.projet-carte:hover {
  transform: translateY(-5px);
}
.projet-carte__image {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.projet-carte__contenu {
  padding: 1rem;
}
.projet-carte__titre {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}
.projet-carte__description {
  font-style: italic;
  color: rgba(51, 51, 51, 0.8);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.projet-carte__technologies {
  margin: 1rem 0;
}
.projet-carte__technologies-titre {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 0.5rem;
}
.projet-carte__technologies-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.projet-carte__tech-badge {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  overflow: hidden;
}
.projet-carte__tech-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.projet-carte__tech-badge:hover {
  transform: scale(1.1);
}
.projet-carte__lien {
  display: block;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.projet-carte__lien:hover {
  background-color: #ff3838;
}
.projet-carte__lien i {
  margin-left: 0.5rem;
}

/*!fin de page*/
/*?début*/
@media (max-width: 768px) {
  .projets {
    padding: 0;
  }
  .recherche__filtres {
    justify-content: flex-start;
    padding: 0 1rem;
  }
  .projet-carte {
    display: flex;
    align-items: center;
    padding: 1rem;
  }
  .projet-carte__image {
    width: 150px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .projet-carte__contenu {
    flex: 1;
  }
  .projet-carte__technologies {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .projet-carte__lien {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
}
/*?fin de page*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*ANNIMATIONS*/
.projet-carte {
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: forwards;
}
.projet-carte:hover {
  transform: translateY(-5px);
}

.BlockIMGProjet {
  display: flex;
  height: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.projet-carte:nth-child(1) {
  animation-delay: 0.1s;
}

.projet-carte:nth-child(2) {
  animation-delay: 0.2s;
}

.projet-carte:nth-child(3) {
  animation-delay: 0.3s;
}

.projet-carte:nth-child(4) {
  animation-delay: 0.4s;
}

.projet-carte:nth-child(5) {
  animation-delay: 0.5s;
}

/*Fin ANNIMATIONS*/
.container {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-top: 100px;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #ddd;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 2rem 0;
  position: relative;
  width: 50%;
}
.timeline-item.gauche {
  left: 0;
  padding-right: 4rem;
}
.timeline-item.droite {
  left: 50%;
  padding-left: 4rem;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ff6b6b;
  border-radius: 50%;
  top: 50%;
  z-index: 2;
}
.gauche .timeline-dot {
  right: -10px;
}
.droite .timeline-dot {
  left: -10px;
}

.timeline-date {
  position: absolute;
  background-color: #fff;
  border: 2px solid #ff6b6b;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.gauche .timeline-date {
  right: -80px;
}
.droite .timeline-date {
  left: -80px;
}

.timeline-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-card {
  position: relative;
}
.timeline-card h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #ff6b6b;
  font-size: 1.2rem;
}
.timeline-card h3 i {
  margin-right: 0.5rem;
}
.timeline-card .location, .timeline-card .period {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}
.timeline-card .location i, .timeline-card .period i {
  margin-right: 0.5rem;
  color: #ff6b6b;
}
.timeline-card .description {
  margin-top: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 40px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 1rem;
  }
  .timeline-item.gauche, .timeline-item.droite {
    left: 0;
    padding-left: 80px;
    padding-right: 1rem;
  }
  .timeline-dot {
    left: 40px;
  }
  .gauche .timeline-dot, .droite .timeline-dot {
    left: 30px;
  }
  .timeline-date {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    top: 0;
    transform: none;
  }
  .gauche .timeline-date, .droite .timeline-date {
    left: -20px;
    right: auto;
  }
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.contact-info, .contact-form {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
@media (max-width: 768px) {
  .contact-info, .contact-form {
    padding: 32px 10px 32px 10px;
    width: 100%;
  }
}

.contact-info h2 {
  margin-bottom: 2rem;
  color: #ff6b6b;
  font-size: 1.5rem;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
}
.info-item .icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.info-item .icon i {
  color: #ff6b6b;
  font-size: 1.2rem;
}
.info-item .details h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}
.info-item .details p {
  color: #666;
  font-size: 0.95rem;
}

.hidden-phone {
  cursor: pointer;
  color: #ff6b6b;
  font-weight: bold;
}
.hidden-phone:hover {
  text-decoration: underline;
}

.visible-phone {
  font-weight: bold;
}

.contact-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.contact-section .contact-title {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #ff6b6b;
}
.contact-section .contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-section .contact-buttons .contact-btn {
  padding: 10px 15px;
  border: 1px solid #ff6b6b;
  border-radius: 4px;
  color: #ff6b6b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  background: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.contact-section .contact-buttons .contact-btn:hover {
  background-color: #ff6b6b;
  color: white;
}

@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
  }
  .contact-buttons .contact-btn {
    width: 100%;
  }
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 998;
}
.bottom-nav .nav-item {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-size: 0.8rem;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
.bottom-nav .nav-item i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}
.bottom-nav .nav-item:hover, .bottom-nav .nav-item.active {
  color: #ff6b6b;
}
.bottom-nav .nav-item:hover i, .bottom-nav .nav-item.active i {
  transform: translateY(-2px);
}
.bottom-nav .nav-item .ripple {
  position: absolute;
  background: rgba(255, 107, 107, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
