#work {
  background-color: #011832;
  padding: 40px 20px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container-projet {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.container-projet h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #011832;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.project {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.project:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.project .project-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
}
.project .project-title {
  display: block;
  background: transparent;
  border: 2px solid #011832;
  border-radius: 25px;
  padding: 10px 20px;
  color: #011832;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 25px;
  margin-bottom: 25px;
  text-decoration: none;
}
.project .project-title:hover {
  background: #011832;
  color: white;
}
.project .description {
  margin: 20px 0;
  color: #000;
  font-size: 1em;
  line-height: 1.5;
}

#about {
  background: #011832;
  color: #FAF9F8;
  padding: 40px 20px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-cv .container-cv {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-cv {
  text-align: center;
  margin-bottom: 40px;
  color: #FAF9F8;
}
.header-cv h1 {
  margin-bottom: -10px;
  font-size: 48px;
  font-family: "Lobster", cursive;
}
.header-cv h3 {
  font-size: 24px;
  margin: 0;
  margin-top: 20px;
  font-family: "Raleway", sans-serif;
}

.content-cv {
  display: flex;
  width: 100%;
  margin-top: 40px;
  gap: 20px;
}

.left-column-cv {
  width: 40%;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  color: #011832;
}
.left-column-cv ul {
  list-style: none;
  padding-left: 0;
}
.left-column-cv ul li {
  padding-bottom: 17px;
}
.left-column-cv h2 {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  color: #011832;
  margin-bottom: 20px;
  text-decoration: underline;
}
.left-column-cv .skill {
  margin-bottom: 20px;
}
.left-column-cv .skill p {
  margin: 0;
  color: #011832;
}
.left-column-cv .skill .skill-bar {
  width: 100%;
  background-color: #ddd;
  border-radius: 5px;
  overflow: hidden;
}
.left-column-cv .skill .skill-bar .skill-level {
  height: 20px;
  width: 0;
  background-color: #011832;
  border-radius: 5px;
  transition: width 4s ease-in-out;
}

.right-column-cv {
  width: 60%;
  padding: 20px;
}
.right-column-cv p {
  margin-top: 20px;
  color: #FAF9F8;
}
.right-column-cv ul li {
  margin-bottom: 20px;
  color: #FAF9F8;
}
.right-column-cv p, .right-column-cv ul {
  margin-bottom: 15px;
}
.right-column-cv h2 {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  color: #FAF9F8;
  margin-bottom: 65px;
  text-decoration: underline;
  margin-top: 65px;
}

@media (max-width: 768px) {
  .content-cv {
    flex-direction: column;
    align-items: center;
  }
  .left-column-cv, .right-column-cv {
    width: 100%;
  }
}
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #FAF9F8;
}

.header {
  width: 100%;
  height: 80px;
  background-color: #011832;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-left, .header .header-right {
  display: flex;
  align-items: center;
}
.header .header-left {
  padding-left: 100px;
}
.header .header-right {
  padding-right: 100px;
}
.header .site-title {
  margin: 0;
}
.header .site-title a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-family: "CormorantUpright";
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.background-index {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #011832;
}

.content-index {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}
.content-index p {
  color: #fff;
}

.animated-title {
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
  font-size: 98px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #fff;
}

.animated-description {
  font-size: 1.2em;
  margin-bottom: 60px;
  animation: fadeInUp 2s ease-out;
  color: #fff;
}

.animated-button {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 25px;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 45px;
  animation: fadeInUp 2.5s ease-out;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.animated-button:hover {
  background: #fff;
  color: #011832;
  border-color: #fff;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated-title:hover,
.animated-description:hover {
  color: #fff;
  text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
}

#contact {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #011832;
  animation: backgroundAnimation 15s ease infinite;
}

@keyframes backgroundAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.contact-form {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  animation: fadeIn 2s ease-in-out;
}
.contact-form .contact-form-title h2 {
  margin-top: 0;
  margin-bottom: 20px;
  animation: slideIn 1s ease forwards;
  color: #fff;
}
.contact-form .form label {
  display: block;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.contact-form .form-row {
  display: flex;
  justify-content: space-between;
}
.contact-form .form-row label {
  flex: 1;
  margin-right: 10px;
}
.contact-form .form-row label:last-child {
  margin-right: 0;
}
.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.contact-form input[type=text]:focus, .contact-form input[type=email]:focus, .contact-form textarea:focus {
  border-color: #007BFF;
  background-color: #f0f8ff;
}
.contact-form input[type=submit] {
  display: block;
  width: auto;
  padding: 10px 20px;
  margin: 10px auto;
  background: #fff;
  color: #011832;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "CormorantUpright";
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-form input[type=submit]:hover {
  background: #011832;
  color: #fff;
}
.contact-form ::placeholder {
  color: #000;
  opacity: 1;
}
.contact-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #fff;
  color: #fff;
  text-align: center;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hidden {
  opacity: 0;
  transform: translateY(20px);
}

.menu-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1000;
}
.menu-burger span {
  display: block;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}
.menu-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-burger.open span:nth-child(2) {
  opacity: 0;
}
.menu-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
  z-index: 999;
}
.menu-overlay.open {
  transform: translateY(0);
}

.menu-container {
  text-align: center;
}
.menu-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
}
.menu-container ul li {
  margin: 20px 0;
}
.menu-container ul li a {
  color: #fff;
  text-decoration: none;
  font-family: "CormorantUpright";
  font-size: 75px;
  font-weight: 500;
  line-height: 28px;
  transition: font-weight 0.3s;
}
.menu-container ul li a:hover {
  font-weight: 600;
}

h1 {
  font-family: "Lobster", cursive;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-family: "Lobster", cursive;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  font-family: "Lobster", cursive;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

.description {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

p {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-image {
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.description-single {
  color: #fff;
  animation: slideInFromLeft 1s ease-in-out;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.description-section, .next-project-section {
  padding: 60px 20px;
}

.container-description, .container-next-project {
  max-width: 800px;
  margin: 0 auto;
}

.container-description h2 {
  color: #fff;
  text-align: center;
}

.icon-github-section {
  text-align: center;
  padding: 90px;
  transition: transform 0.3s ease;
}
.icon-github-section .icon-github {
  font-size: 100px;
  margin-bottom: 20px;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}
.icon-github-section .icon-github:hover {
  color: #fff;
  transform: scale(1.1);
}
.icon-github-section .github-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.icon-github-section .github-link:hover {
  transform: scale(1.1);
}

.desktop-image-section, .mobile-image-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #F4F4F4;
  transition: background-color 0.3s ease;
}
.desktop-image-section .desktop-image, .mobile-image-section .desktop-image {
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.desktop-image-section .desktop-image:hover, .mobile-image-section .desktop-image:hover {
  transform: scale(1.05);
}
.desktop-image-section .mobile-image, .mobile-image-section .mobile-image {
  max-width: 25%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.desktop-image-section .mobile-image:hover, .mobile-image-section .mobile-image:hover {
  transform: scale(1.05);
}

.next-project-section {
  background-color: #E8E3DF;
  text-align: center;
}
.next-project-section .next-project-link {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  text-transform: uppercase;
  border: solid 2px #fff;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.next-project-section .next-project-link:hover {
  background-color: #fff;
  color: #011832;
  transform: scale(1.1);
}

.description-section, .desktop-image-section, .icon-github-section, .mobile-image-section, .next-project-section {
  background-color: #011832;
  animation: fadeIn 2s ease-in-out;
}

.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.lazy.fade-in {
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero-image {
    height: 70vh;
    background-attachment: scroll;
  }
  .icon-github {
    font-size: 80px;
    padding: 60px;
  }
  .desktop-image, .mobile-image {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .hero-image {
    height: 30vh;
    background-attachment: scroll;
  }
  .icon-github {
    font-size: 60px;
    padding: 40px;
  }
  .desktop-image, .mobile-image {
    max-width: 70%;
  }
  .next-project-link {
    padding: 10px 20px;
    font-size: 16px;
  }
  .menu-burger {
    width: 20px;
    height: 15px;
  }
  .menu-burger span {
    height: 2px;
  }
}
.site-footer {
  width: 100%;
  height: 80px;
  background-color: #011832;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.site-footer p {
  margin: 0;
  text-align: center;
  font-family: "CormorantUpright";
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

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