@font-face {
  font-family: "Oswald";
  src: url("../../assets/fonts/Oswald-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  color: var(--violet-fonce);
}

h1, h2, h3, h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin: 0 0 var(--spacing-sm);
  color: var(--violet-fonce);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
}

h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}

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

p {
  text-align: justify;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
.presentation {
  background-color: #461E55;
  padding: 4rem 2rem;
  color: #fff;
  top: 3rem;
}
.presentation .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .presentation .container {
    flex-direction: column;
    text-align: center;
  }
}
.presentation .presentation-image img {
  border-radius: 50%;
}
.presentation .presentation-text {
  max-width: 600px;
}
.presentation .presentation-text .presentation-name {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.presentation .presentation-text .presentation-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.presentation .presentation-text .presentation-quote {
  font-style: italic;
  font-size: 1.1rem;
  overflow: hidden;
  border-right: 2px solid #fff;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@media (max-width: 768px) {
  .presentation {
    padding: 3rem 0rem;
  }
}
.realisations {
  background-color: #80B7B5;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}
.realisations .bulle-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  max-width: 600px;
  z-index: 0;
}
.realisations .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 4rem;
  flex-wrap: wrap;
}
.realisations .realisations-left {
  flex: 1;
}
.realisations .realisations-left .section-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #461E55;
}
.realisations .realisations-left .services-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.realisations .realisations-left .services-list li {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}
.realisations .realisations-left .services-list li img {
  width: 40px;
  height: auto;
}
.realisations .realisations-right {
  flex: 1;
  position: relative;
}
.realisations .realisations-right .mockup {
  position: relative;
  width: 100%;
  max-width: 600px;
}
.realisations .realisations-right .mockup .mockup-img {
  width: 100%;
  height: auto;
  display: block;
  position: inherit;
  z-index: 300;
}
.realisations .realisations-right .mockup .mockup-screen {
  position: absolute;
  top: 9.4%;
  left: 21%;
  width: 63%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
.realisations .realisations-right .mockup .mockup-screen .owl-carousel,
.realisations .realisations-right .mockup .mockup-screen .owl-carousel .item {
  width: 100%;
  height: 100%;
}
.realisations .realisations-right .mockup .mockup-screen .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.realisations .realisations-right .mockup .mockup-screen .owl-nav,
.realisations .realisations-right .mockup .mockup-screen .owl-dots {
  display: none;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .realisations .bulle-bg {
    width: 40%;
  }
}
.formations {
  background: url("assets/img/bg-formation.png") no-repeat top left;
  background-size: cover;
  background-color: #FEFBF8;
  position: relative;
  padding: 6rem 2rem;
}
.formations .form-shape {
  position: absolute;
  left: 0;
  top: -24rem;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.formations .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.formations .formations-left {
  flex: 1;
}
.formations .formations-left .cv-wrapper {
  position: relative;
  width: 250px;
  margin-bottom: 3rem;
}
.formations .formations-left .cv-wrapper .cv-arrow {
  position: absolute;
  top: -2rem;
  left: -3rem;
  font-family: "Oswald", sans-serif;
  color: #461E55;
  font-size: 1rem;
  transform: rotate(-10deg);
}
.formations .formations-left .cv-wrapper .cv-img {
  width: 100%;
  transform: rotate(-7deg);
}
.formations .formations-left .competences .competences-title {
  color: #FEFBF8;
  margin-bottom: 1.5rem;
}
.formations .formations-left .competences .competences-grid {
  display: grid;
  grid-template-columns: repeat(4, 60px);
  gap: 1rem;
}
.formations .formations-left .competences .competences-grid img {
  width: 100%;
  height: auto;
}
.formations .formations-right {
  flex: 2;
  max-width: 600px;
}
.formations .formations-right .section-title {
  color: #461E55;
  margin-bottom: 2rem;
}
.formations .formations-right .formation-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.formations .formations-right .formation-list li {
  background-color: #461E55;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: #fff;
}
.formations .formations-right .formation-list li h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.formations .formations-right .formation-list li span {
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 992px) {
  .formations {
    background: #FEFBF8;
    background-image: none;
  }
  .formations .form-shape {
    opacity: 0;
    display: none;
  }
  .formations .formations-left {
    background: none;
    background-color: #5489A6;
    padding: 2rem;
    border-radius: 4rem;
  }
}
@media (max-width: 768px) {
  .formations {
    padding: 2rem 0rem;
    background-color: #5489A6;
  }
  .formations .formations-left {
    padding: 0;
    border-radius: 0;
  }
  .formations .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .formations .competences-grid {
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
  }
  .formations .formations-right {
    max-width: 100%;
  }
  .formations .cv-wrapper {
    margin-inline: auto;
  }
}
@media (max-width: 625px) {
  .formations .formations-left .cv-wrapper {
    width: 100%;
  }
  .formations .formations-left .competences .competences-grid {
    grid-template-columns: repeat(2, 60px);
    justify-content: center;
  }
  .competences-grid {
    grid-template-columns: repeat(3, 30px);
  }
}
@media (min-width: 1620px) {
  .formations {
    background-color: #5489A6;
  }
}
.testimonials {
  background-color: #461E55;
  padding: 4rem 2rem;
  position: relative;
  z-index: 300;
}
.testimonials .testimonial-card {
  background-color: #FEFBF8;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 300px;
  margin: auto;
}
.testimonials .testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.testimonials .testimonial-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #461E55;
  line-height: 1.4;
}
.testimonials .testimonial-card .signature {
  margin-top: 1rem;
  font-style: italic;
}
.testimonials .owl-nav,
.testimonials .owl-dots {
  display: none;
}

.min-screen-warning {
  display: none;
}

@media (max-width: 200px) {
  .min-screen-warning {
    display: none;
    position: fixed;
    inset: 0;
    background-color: #C74585;
    color: #FEFBF8;
    font-family: "Montserrat", sans-serif;
    z-index: 9999;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .min-screen-warning .warning-inner {
    max-width: 320px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .min-screen-warning .warning-inner p {
    font-size: 1.1rem;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    color: #461E55;
    margin-bottom: 1rem;
  }
  .min-screen-warning .warning-inner p.advice {
    font-weight: 400;
    font-size: 1rem;
    color: #461E55;
  }
  .min-screen-warning .warning-inner p .emoji {
    font-size: 1.4rem;
    display: inline-block;
    margin-left: 0.3rem;
  }
  body > *:not(.min-screen-warning) {
    display: none !important;
  }
  .min-screen-warning {
    display: flex;
  }
}
.site-footer {
  text-align: center;
}
.site-footer .footer-content {
  padding: 2rem 2rem;
  margin: 0;
  background-color: #FEFBF8;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  max-width: 100%;
  justify-content: space-around;
}
.site-footer .footer-content .btn-contact {
  background-color: #C74585;
  color: #fff;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  border-radius: 5px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.site-footer .footer-content .btn-contact:hover {
  background-color: #461E55;
}
.site-footer .footer-content .footer-icons {
  display: flex;
  gap: 2rem;
}
.site-footer .footer-content .footer-icons a img {
  width: 35px;
  height: auto;
  transition: transform 0.2s ease;
}
.site-footer .footer-content .footer-icons a img:hover {
  transform: scale(1.1);
}
.site-footer .footer-content .back-to-top {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
}
.site-footer .footer-content .back-to-top img {
  width: 32px;
  height: auto;
}
.site-footer .copyright {
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  position: relative;
  padding: 1rem;
  text-align: center;
}
.site-footer .copyright .heart {
  color: #C74585;
}
.site-footer .mentions-legales {
  font-size: 0.8rem;
  color: #3D365C;
}
@media (max-width: 768px) {
  .site-footer .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  .site-footer .footer-content .back-to-top {
    position: static;
    transform: none;
  }
}

.site-header {
  background-color: #fff;
  padding: 1rem 0;
  position: fixed;
  z-index: 1000;
  width: 100%;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .branding {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.site-header .branding .logo {
  width: 45px;
  height: auto;
}
.site-header .branding .site-title {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #461E55;
}
.site-header .site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0 2rem;
}
.site-header .site-nav ul li a {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #461E55;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.site-header .site-nav ul li a:hover {
  color: #C74585;
}
.site-header .site-nav ul li a.btn-contact {
  background-color: #80B7B5;
  color: #461E55;
  text-transform: uppercase;
  padding: 0.4rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  margin-left: 2rem;
}
.site-header .site-nav ul li a.btn-contact:hover {
  background-color: #C74585;
}
@media (max-width: 768px) {
  .site-header .site-nav {
    display: none;
  }
  .site-header .site-nav.open {
    display: block;
    margin-top: 2rem;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 25px;
  height: 3px;
  background: #461E55;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 999;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu .logo {
  width: 120px;
  margin-bottom: 2rem;
}
.mobile-menu .site-nav-mobile ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
}
.mobile-menu .site-nav-mobile ul li a {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: #461E55;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.mobile-menu .site-nav-mobile ul li a:hover {
  color: #C74585;
}
.mobile-menu .site-nav-mobile ul li a.btn-contact {
  background-color: #80B7B5;
  color: #461E55;
  text-transform: uppercase;
  padding: 0.6rem 2rem;
  border-radius: 5px;
  font-weight: 700;
  display: inline-block;
  margin-top: 1rem;
}
.mobile-menu .site-nav-mobile ul li a.btn-contact:hover {
  background-color: #C74585;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #461E55;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-header .container {
    text-align: center;
  }
  .site-header .container .branding {
    gap: 0;
  }
  .site-header .container .branding .logo {
    width: 80px;
  }
  .site-header .container .site-title {
    font-size: 1rem;
  }
  .site-header .container .site-nav ul {
    flex-direction: column;
    margin: 0;
    gap: 1rem;
    padding: 0;
  }
  .site-header .container .site-nav ul li a {
    font-size: 1rem;
  }
  .site-header .container .site-nav ul li a.btn-contact {
    margin-left: 0;
  }
}