/*!****************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-2.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-2.use[2]!./node_modules/sass-loader/dist/cjs.js!./src/view/sass/projects.scss ***!
  \****************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
a {
  color: inherit;
  /*&[data-theme="dark"] {
      color: #90caf9; // Couleur personnalisée pour le thème sombre
  }

  &[data-theme="light"] {
      color: #1e88e5; // Couleur personnalisée pour le thème clair
  }*/
}
a:hover, a:focus {
  text-decoration: underline;
}

html, body {
  height: 100%;
}

body {
  font-family: "Roboto", "Material Icons", Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  min-height: 200px;
  max-height: 200px;
  height: 200px;
  display: flex;
  align-items: center;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url("/assets/images/header_bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: 0;
}
@media (max-width: 768px) {
  header {
    min-height: 100px;
    max-height: 100px;
    height: 100px;
  }
  header::before {
    background-image: url("/assets/images/header_bg_mobile.jpg");
    height: 100px;
  }
}
header .header__title {
  display: inline-block;
  position: relative;
  background-color: rgba(84, 84, 146, 0.5);
  margin-top: 25px;
  margin-left: 75px;
  color: #eff0f5;
  padding: 15px 30px;
  text-align: center;
}
@media (max-width: 768px) {
  header .header__title {
    margin-top: 10px;
    margin-left: 10px;
    padding: 8px;
  }
}

.skeleton {
  background: #e0e0e0;
  animation: shimmer 1.5s infinite;
  padding: 10px;
}
.skeleton__title {
  width: 70%;
  height: 20px;
  background: #ccc;
  margin-bottom: 10px;
}
.skeleton__line {
  height: 10px;
  background: #ccc;
  margin-bottom: 8px;
  width: 90%;
}

@keyframes shimmer {
  0% {
    background-color: #e0e0e0;
  }
  50% {
    background-color: #f0f0f0;
  }
  100% {
    background-color: #e0e0e0;
  }
}
main {
  min-height: calc(100% - 200px);
  display: flex;
  align-items: stretch;
  color: #3a3a3a;
}
@media (max-width: 768px) {
  main {
    height: calc(100% - 100px);
  }
}
main .project {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-direction: row;
}
@media (max-width: 768px) {
  main .project {
    flex-direction: column;
  }
}
main .project__list {
  width: 25%;
  background: #eff0f5;
}
@media (max-width: 768px) {
  main .project__list {
    width: 100%;
  }
  main .project__list__error {
    margin: 10px;
  }
}
main .project__list__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-left: 0;
}
@media (max-width: 768px) {
  main .project__list__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
main .project__list__nav__item {
  cursor: pointer;
  color: #545492;
  padding: 10px;
}
main .project__list__nav__item:hover, main .project__list__nav__item.active {
  background: #dddddd;
  font-weight: bold;
}
main .project__detail {
  width: 75%;
  padding: 20px;
}
@media (max-width: 768px) {
  main .project__detail {
    width: 100%;
    padding: 0;
  }
  main .project__detail .skeleton {
    margin-top: 10px;
  }
  main .project__detail__no-active-item, main .project__detail__title, main .project__detail__description {
    padding: 10px;
  }
  main .project__detail__title {
    padding-bottom: 0;
  }
  main .project__detail__description {
    padding-top: 0;
  }
}
main .project__detail__no-active-item {
  text-align: justify;
  margin: 0;
}
main .project__detail__title {
  color: #545492;
  margin: 0;
  margin-bottom: 10px;
  font-size: 1.5em;
}
main .project__detail__description {
  color: #3a3a3a;
  text-align: justify;
}
main .project__detail__description h3 {
  color: #545492;
}
main .project__detail__description img {
  max-width: 100%;
  height: auto;
}
main .project__detail__icon {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 1em;
  height: 1em;
  margin-right: 5px;
}
main .project__detail__icon--github {
  background-image: url("/assets/images/projects/git_type/github.png");
}
main .project__detail__icon--gitlab {
  background-image: url("/assets/images/projects/git_type/gitlab.png");
}
main .project__detail__icon--no-link {
  filter: grayscale(1);
}

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