/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #141C3A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #141C3A;
  text-align: center;
  margin-bottom: 48px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: #E67E22;
  color: #FFFFFF;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.header {
  background-color: #FFFFFF;
  padding: 24px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__nav {
  display: flex;
  gap: 32px;
}
.header__nav a {
  color: #141C3A;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}
.header__nav a:hover {
  color: #E67E22;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E67E22;
  transition: width 0.3s ease;
}
.header__nav a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .header {
    display: none;
  }
  .header__nav {
    display: none;
  }
}

.hero {
  padding: 64px 0;
  text-align: center;
  background-color: #FFFFFF;
}
.hero__title {
  font-size: 36px;
  font-weight: 600;
  color: #141C3A;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #141C3A;
  margin-bottom: 48px;
}
.hero__avatar {
  display: flex;
  justify-content: center;
}
.hero__avatar img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

.intro {
  padding: 48px 0;
  background-color: #E67E22;
  color: #FFFFFF;
}
.intro__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
.intro__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  font-size: 16px;
}

.competences {
  padding: 64px 0;
  background-color: #F5F5F5;
}
.competences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .competences__grid {
    grid-template-columns: 1fr;
  }
}

.competence-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.competence-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.competence-card__icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.competence-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #141C3A;
  text-align: center;
  margin-bottom: 24px;
}
.competence-card__section {
  margin-bottom: 24px;
}
.competence-card__section:last-child {
  margin-bottom: 0;
}
.competence-card__section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #E67E22;
  margin-bottom: 8px;
  text-align: center;
}
.competence-card__section p {
  font-size: 14px;
  color: #666666;
  text-align: center;
  line-height: 1.6;
}

.formations {
  padding: 64px 0;
  background-color: #FFFFFF;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #F5F5F5;
}
.timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}
.timeline__item:nth-child(odd) {
  flex-direction: row;
}
.timeline__item:nth-child(odd) .timeline__year {
  text-align: right;
  padding-right: 32px;
}
.timeline__item:nth-child(odd) .timeline__content {
  padding-left: 32px;
}
.timeline__item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline__item:nth-child(even) .timeline__year {
  text-align: left;
  padding-left: 32px;
}
.timeline__item:nth-child(even) .timeline__content {
  padding-right: 32px;
  text-align: right;
}
.timeline__year {
  flex: 0 0 50%;
  font-size: 24px;
  font-weight: 700;
  color: #141C3A;
  position: relative;
}
.timeline__year::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  border: 3px solid #E67E22;
  border-radius: 50%;
  top: 4px;
}
.timeline__item:nth-child(odd) .timeline__year::after {
  right: -8px;
}
.timeline__item:nth-child(even) .timeline__year::after {
  left: -8px;
}
.timeline__content {
  flex: 0 0 50%;
}
.timeline__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #141C3A;
  margin-bottom: 8px;
}
.timeline__content p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .timeline::before {
    left: 0;
  }
  .timeline__item {
    flex-direction: row !important;
  }
  .timeline__item:nth-child(even) .timeline__content {
    text-align: left;
  }
  .timeline__year {
    flex: 0 0 80px;
    font-size: 18px;
    text-align: left !important;
    padding-left: 24px !important;
    padding-right: 0 !important;
  }
  .timeline__year::after {
    left: -8px !important;
    right: auto !important;
  }
  .timeline__content {
    flex: 1;
    padding-left: 24px !important;
    padding-right: 0 !important;
  }
}

.experiences {
  padding: 64px 0;
  background-color: #F5F5F5;
}

.experience-list {
  max-width: 900px;
  margin: 0 auto;
}

.experience-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.experience-item__period {
  margin-bottom: 24px;
}
.experience-item__content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #141C3A;
  margin-bottom: 24px;
}
.experience-item__content ul {
  list-style: disc;
  padding-left: 24px;
}
.experience-item__content ul li {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 8px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tech-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background-color: rgba(230, 126, 34, 0.15);
  color: #141C3A;
}

.projets {
  padding: 64px 0;
  background-color: #FFFFFF;
  min-height: 570px;
}
.projets__filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.projets__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
}
@media (max-width: 768px) {
  .projets__grid {
    justify-content: center;
  }
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #141C3A;
  background-color: transparent;
  border: 2px solid #F5F5F5;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background-color: #F5F5F5;
}
.filter-btn.active {
  background-color: #E67E22;
  color: #FFFFFF;
  border-color: #E67E22;
}

.projet-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1;
  width: 250px;
  flex-shrink: 0;
}
.projet-card:is(a) {
  display: block;
  color: inherit;
  text-decoration: none;
}
.projet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.projet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projet-card.hidden {
  display: none;
}

.projet-card--discord {
  background-color: #5765EC;
}
.projet-card--discord img {
  object-fit: contain;
}

.project-page {
  padding: 48px 0 64px;
  background-color: #FFFFFF;
}
.project-page__back {
  margin-bottom: 24px;
}
.project-page__back a {
  font-weight: 500;
  color: #141C3A;
  transition: color 0.3s ease;
}
.project-page__back a:hover {
  color: #E67E22;
}
.project-page__wip {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: rgba(230, 126, 34, 0.2);
  color: #141C3A;
}
.project-page__title {
  font-size: 36px;
  font-weight: 600;
  color: #141C3A;
  margin-bottom: 8px;
}
.project-page__meta {
  font-size: 16px;
  color: #666666;
  margin-bottom: 32px;
}
.project-page__section {
  margin-bottom: 48px;
}
.project-page__heading {
  font-size: 20px;
  font-weight: 600;
  color: #141C3A;
  margin-bottom: 24px;
}
.project-page__prose {
  max-width: 720px;
}
.project-page__prose p {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 24px;
}
.project-page__prose p:last-child {
  margin-bottom: 0;
}
.project-page__prose strong {
  color: #141C3A;
  font-weight: 600;
}
.project-page__list {
  list-style: disc;
  padding-left: 24px;
  max-width: 720px;
}
.project-page__list li {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 8px;
}
.project-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.project-page__cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  background-color: #E67E22;
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}
.project-page__cta:hover {
  opacity: 0.92;
}
.project-page__cta--secondary {
  background-color: #141C3A;
}
.project-page__legal {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  max-width: 720px;
}
.project-page__demo {
  max-width: 720px;
  padding: 24px 32px;
  border-radius: 12px;
  background-color: rgba(20, 28, 58, 0.06);
  border: 1px solid rgba(20, 28, 58, 0.12);
}
.project-page__demo-intro {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 24px;
}
.project-page__demo-credentials {
  margin: 0;
}
.project-page__demo-credentials > div {
  margin-bottom: 16px;
}
.project-page__demo-credentials > div:last-child {
  margin-bottom: 0;
}
.project-page__demo-credentials dt {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #141C3A;
  margin-bottom: 4px;
}
.project-page__demo-credentials dd {
  margin: 0;
}
.project-page__demo-credentials code {
  font-size: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #141C3A;
  word-break: break-all;
}

.footer {
  background-color: #E67E22;
  padding: 48px 0;
  color: #FFFFFF;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}
.footer__logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .footer__links {
    flex-direction: column;
    gap: 24px;
  }
}
.footer__cv {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.footer__cv:hover {
  opacity: 0.8;
}
.footer__social {
  display: flex;
  gap: 24px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.footer__social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.footer__social a svg {
  width: 20px;
  height: 20px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    width: 0;
    margin-left: 0;
    margin-right: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    width: 250px;
    margin-left: 12px;
    margin-right: 12px;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    width: 250px;
    margin-left: 12px;
    margin-right: 12px;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    width: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.competence-card,
.timeline__item,
.experience-item {
  opacity: 0;
}
.competence-card.animate-in,
.timeline__item.animate-in,
.experience-item.animate-in {
  animation: slideInUp 0.6s ease-out forwards;
}

.competence-card:nth-child(1).animate-in {
  animation-delay: 0.1s;
}

.competence-card:nth-child(2).animate-in {
  animation-delay: 0.2s;
}

.competence-card:nth-child(3).animate-in {
  animation-delay: 0.3s;
}

.timeline__item:nth-child(1).animate-in {
  animation: slideInLeft 0.6s ease-out forwards;
  animation-delay: 0.1s;
}

.timeline__item:nth-child(2).animate-in {
  animation: slideInRight 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

.timeline__item:nth-child(3).animate-in {
  animation: slideInLeft 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

.timeline__item:nth-child(4).animate-in {
  animation: slideInRight 0.6s ease-out forwards;
  animation-delay: 0.4s;
}

.experience-item:nth-child(1).animate-in {
  animation-delay: 0.1s;
}

.experience-item:nth-child(2).animate-in {
  animation-delay: 0.2s;
}

.hero__title,
.hero__subtitle,
.hero__avatar {
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.hero__title {
  animation-delay: 0.2s;
}

.hero__subtitle {
  animation-delay: 0.4s;
}

.hero__avatar {
  animation-delay: 0.6s;
}

.header {
  transition: box-shadow 0.3s ease;
}

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