body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: #000000;
  color: white;
  overflow-y: auto;
  transition: background 0.5s ease;
}

* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #121212;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #6b46c1, #6f77ed);
  border-radius: 10px;
  border: 2px solid #121212;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #6f77ed, #9b90ff);
}

.scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #6b46c1 #121212;
}

.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #6a5acd, #ff0000);
  margin: 30px 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

/* Styles de la section À propos */
.about-section {
  background: rgba(0, 0, 0, 0.8);
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 15px;
  color: white;
  margin: 40px auto;
  max-width: 900px;
  min-height: 400px;
  backdrop-filter: blur(10px);
}

.about-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
}

.about-portrait {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 250px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.about-content {
  flex: 2;
  max-width: 600px;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #6a5acd;
}

/* Styles de la section Formé par les meilleurs */
.best-section {
  background: #111111;
  opacity: 90%;
  backdrop-filter: blur(10px);
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.best-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6a5acd;
  margin-bottom: 40px;
}

.best-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}

.best-icons .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.best-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.best-category {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.best-video {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
}

.best-placeholder {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  margin-bottom: 20px;
}

.best-button {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), #2e325e);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, color 0.3s ease;
}

.best-button:hover {
  background: linear-gradient(45deg, #6a5acd, #6f77ed);
  color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Styles de la section Contact */
.contact-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 900px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6a5acd;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.calendly-inline-widget {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 700px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.calendly-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.calendly-bounce1,
.calendly-bounce2,
.calendly-bounce3 {
  width: 10px;
  height: 10px;
  background-color: #6a5acd;
  border-radius: 50%;
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* Styles du footer */
.site-footer {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 18px;
  color: #6a5acd;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #6a5acd;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  filter: invert(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: invert(60%) sepia(20%) saturate(700%) hue-rotate(220deg);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Styles de la section principale */
.main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

.text-content {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: white;
}

.title span {
  color: #6a5acd;
  text-shadow: 0 0 15px rgba(106, 90, 205, 0.8);
}

/* Cube */
.cube-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.scene {
  width: 250px;
  height: 250px;
  perspective: 1000px;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 6s linear infinite;
  transition: transform 0.5s ease;
  border: none;
}

.face {
  position: absolute;
  width: 250px;
  height: 250px;
  background: transparent;
  border: 2px solid #6a5acd;
  box-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.front {
  transform: rotateY(0deg) translateZ(125px);
}

.back {
  transform: rotateY(180deg) translateZ(125px);
}

.left {
  transform: rotateY(-90deg) translateZ(125px);
}

.right {
  transform: rotateY(90deg) translateZ(125px);
}

.top {
  transform: rotateX(90deg) translateZ(125px);
}

.bottom {
  transform: rotateX(-90deg) translateZ(125px);
}

@keyframes rotateCube {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* Styles de la barre de navigation */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 40px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
  margin-right: 20px;
}

.logo {
  width: 50px;
  height: 50px;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #6a5acd;
}

/* Styles de la section Avis */
.reviews-section {
  background: #111111;
  padding: 50px 20px;
  text-align: center;
  color: white;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6a5acd;
  margin-bottom: 40px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin: 20px;
  max-width: 300px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.review-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.review-card h3 {
  font-size: 1.5rem;
  color: #6a5acd;
  margin-bottom: 10px;
}

.review-role {
  font-size: 0.9rem;
  color: #dddddd;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.video-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin: 20px;
  max-width: 300px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  margin-bottom: 15px;
}

.video-card h3 {
  font-size: 1.2rem;
  color: #6a5acd;
  margin: 0;
}

a {
  text-decoration: none;
  color: #6a5acd;
}

.vertical-videos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.vertical-video {
  width: 200px;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Adaptation responsive pour mobile */
@media (max-width: 480px) {
  .vertical-video {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

/* Responsive pour la section about */
@media (max-width: 1024px) {
  .about-container video {
    width: 100% !important;
    max-width: 600px !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 30px 15px;
    margin: 20px auto;
  }

  .about-container {
    gap: 15px;
  }

  .about-container video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .about-container iframe {
    width: 100% !important;
    max-width: 350px !important;
    height: 200px !important;
  }

  .about-container>div {
    flex-direction: column !important;
    gap: 15px !important;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 20px 10px;
    margin: 15px auto;
  }

  .about-container video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .about-container iframe {
    width: 100% !important;
    max-width: 300px !important;
    height: 170px !important;
  }
}