@charset "UTF-8";
/*
 * FICHIER SCSS PRINCIPAL
 *
 * Ce fichier importe tous les modules SCSS pour former un CSS complet
 */
:root {
  --hexagon-ratio: 0.65;
  --hexagon-title-boost: 1;
  --hexagon-title-scale: 0.8;
}

/*
 * FICHIER SCSS PRINCIPAL
 *
 * Ce fichier importe tous les modules SCSS pour former un CSS complet
 */
/* 
 * Style principal du site vitrine PWA
 * 
 * Ce fichier contient les styles de base pour toutes les pages du site
 * en dehors des spécificités de navigation et de la page d'accueil
 _style.scss
 */
/* -- logo -- */
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo .main-logo {
  height: 55px;
  width: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .logo .main-logo {
    height: 40px;
  }
}
@media (max-width: 576px) {
  .logo .main-logo {
    height: 35px;
  }
}
/* ----- header container par rapport au logo ?? ----- */
header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
}
@media (max-width: 768px) {
  header .container {
    padding: 10px 15px;
  }
}

/* ----- Reset et styles de base ----- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

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

a {
  color: #4285f4;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: #34a853;
}

/* ----- Layout Containers ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 15px;
}

/* ----- Main Content ----- */
main {
  padding: 0 0;
  min-height: 60vh;
}

.page-content {
  margin-bottom: 40px;
}

/* ----- Typographie ----- */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  line-height: 1.3;
  color: #333333;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

h2 {
  font-size: 2rem;
  margin-top: 40px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

/* ----- Boutons ----- */
.button {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}
.button.primary {
  background-color: #4285f4;
  color: white;
}
.button.primary:hover {
  background-color: #1266f1;
  color: white;
}
.button.secondary {
  background-color: #34a853;
  color: white;
}
.button.secondary:hover {
  background-color: #288140;
  color: white;
}
.button.outline {
  background-color: transparent;
  border: 2px solid #4285f4;
  color: #4285f4;
}
.button.outline:hover {
  background-color: #4285f4;
  color: white;
}

/* ----- Sections de page ----- */
.page-section {
  margin-bottom: 60px;
}
.page-section h2 {
  margin-bottom: 30px;
}

/* ----- Grid de fonctionnalités ----- */
.features-grid {
  display: grid;
  gap: 30px;
}
.features-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.features-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.features-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  background-color: #abcaea;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.feature-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.feature-item .feature-icon {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: #4285f4;
}
.feature-item h3 {
  margin-bottom: 15px;
}

/* ----- Témoignages ----- */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-info h4 {
  margin-bottom: 5px;
}
.author-info p {
  color: #666666;
  margin-bottom: 0;
}

/* ----- Bannière CTA ----- */
.cta-banner {
  background-color: #f8f9fa;
  padding: 50px 30px;
  text-align: center;
  border-radius: 8px;
  margin: 40px 0;
}
.cta-banner h2 {
  margin-bottom: 20px;
}
.cta-banner p {
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ----- Bloc Texte + Média ----- */
.text-media-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin: 40px 0;
}
.text-media-block.media-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.text-media-block.media-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.text-media-block .text-content,
.text-media-block .media-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.text-media-block .media-content img {
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ----- Footer ----- */
footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.widget h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.widget p {
  color: #ccc;
}
.widget ul {
  list-style: none;
}
.widget ul li {
  margin-bottom: 10px;
}
.widget ul li a {
  color: #ccc;
}
.widget ul li a:hover {
  color: #fff;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.social-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background-color: #4285f4;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #999;
  font-size: 0.9rem;
}

/* ----- Bannière d'installation PWA ----- */
.pwa-banner {
  display: none; /* Caché par défaut, sera affiché via JavaScript */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 12px;
  text-align: center;
  z-index: 1000;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.pwa-banner p {
  margin: 0 0 10px 0;
  font-weight: 500;
}

.pwa-install-button {
  background-color: #4285f4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.pwa-install-button:hover {
  background-color: #3367d6;
}

/* ----- Page d'erreur 404 ----- */
.error-page {
  text-align: center;
  padding: 100px 0;
}
.error-page .error-code {
  font-size: 10rem;
  font-weight: bold;
  color: #4285f4;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.8;
}
.error-page h1 {
  margin-bottom: 20px;
}
.error-page p {
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ----- Pages FAQ ----- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-search {
  max-width: 600px;
  margin: 20px auto;
}

.search-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.search-input-group input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
}
.search-input-group button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: none;
  border: none;
  padding: 0 15px;
  color: #666666;
  cursor: pointer;
}

.faq-assistant-cta {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.faq-item .faq-question {
  padding: 15px 20px;
  background-color: #f8f9fa;
  font-weight: 500;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq-item .faq-question:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-item.active .faq-question:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-item .faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 1000px;
}

/* ----- Chat Assistant ----- */
.chat-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chat-header {
  text-align: center;
  margin-bottom: 20px;
}

.chat-messages {
  height: 400px;
  overflow-y: auto;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.message {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 80%;
}
.message.user {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
}
.message.bot {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: auto;
}
.message .message-content {
  padding: 10px 15px;
  border-radius: 18px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.message.user .message-content {
  background-color: #4285f4;
  color: white;
  border-bottom-right-radius: 5px;
}
.message.bot .message-content {
  background-color: #e9e9eb;
  color: #333;
  border-bottom-left-radius: 5px;
}
.message .message-time {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.chat-input {
  position: relative;
}

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-group input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
}
.input-group button {
  background-color: #4285f4;
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-left: 10px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.input-group button:hover {
  background-color: #3367d6;
}

/* Modal d'escalade */
.escalation-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.escalation-modal .modal-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.escalation-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}
.escalation-modal .contact-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 25px 0;
}
.escalation-modal .contact-option {
  text-align: center;
  padding: 15px 25px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.escalation-modal .contact-option:hover {
  background-color: #f5f5f5;
}
.escalation-modal .contact-option i {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

/* ----- Animations ----- */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.pulse {
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fadeIn 0.5s ease-in;
          animation: fadeIn 0.5s ease-in;
}

/* ----- Classes utilitaires ----- */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.my-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-5 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-5 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.rounded {
  border-radius: 8px;
}

.shadow {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ----- Media queries responsive ----- */
@media (max-width: 1200px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .features-grid.columns-3,
  .features-grid.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .text-media-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-media-block.media-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 576px) {
  .features-grid.columns-2,
  .features-grid.columns-3,
  .features-grid.columns-4 {
    grid-template-columns: 1fr;
  }
  .footer-widgets {
    grid-template-columns: 1fr;
  }
  .error-code {
    font-size: 6rem;
  }
  .pwa-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pwa-banner p {
    margin-bottom: 10px;
  }
}
/* Pour les appareils déjà en mode standalone (PWA installée) */
@media (display-mode: standalone) {
  .pwa-banner {
    display: none !important;
  }
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
}

/*
 * FICHIER SCSS PRINCIPAL
 *
 * Ce fichier importe tous les modules SCSS pour former un CSS complet
 */
/* 
 * STYLES POUR LA NAVIGATION 
 */
.transparent-header {
  position: fixed;
}

.transparent-header,
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.transparent-header.scrolled,
header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.transparent-header .container,
header .container {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  background-image: radial-gradient(circle at 30% 50%, rgba(123, 66, 142, 0.15), transparent 70%), radial-gradient(circle at 70% 50%, rgba(76, 175, 80, 0.15), transparent 70%), -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.2)));
  background-image: radial-gradient(circle at 30% 50%, rgba(123, 66, 142, 0.15), transparent 70%), radial-gradient(circle at 70% 50%, rgba(76, 175, 80, 0.15), transparent 70%), linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}
.transparent-header .container nav a,
header .container nav a {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.transparent-header .container .logo,
header .container .logo {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-right: auto;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav ul li {
  position: relative;
  margin: 0 5px;
}
nav ul li a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
nav ul li.active > a {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-weight: 600;
}
nav ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  min-width: 200px;
  display: none;
  padding: 10px 0;
  z-index: 10;
}
nav ul li .submenu li {
  margin: 0;
  width: 100%;
}
nav ul li .submenu li a {
  color: #333;
  padding: 8px 20px;
  width: 100%;
  display: block;
  border-radius: 0;
}
nav ul li .submenu li a:hover {
  background: #f5f5f5;
  color: #5a2da9;
}
nav ul li:hover .submenu {
  display: block;
}
nav ul li.social-icon a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
nav ul li.social-icon a:hover {
  background: rgba(255, 255, 255, 0.3);
}
nav ul li.user-account {
  margin-left: 10px;
}
nav ul li.user-account .account-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(135deg, #5a2da9, #9f4dff);
  color: white;
  border-radius: 20px;
  padding: 8px 15px;
}
nav ul li.user-account .account-link i {
  margin-right: 6px;
}
nav ul li.user-account .account-link:hover {
  background: linear-gradient(135deg, #4a1d99, #8f3def);
}
nav ul li.user-account .account-menu {
  right: 0;
  left: auto;
  width: 220px;
  padding: 0;
}
nav ul li.user-account .account-menu .user-info {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
nav ul li.user-account .account-menu .user-info .user-name {
  font-weight: 600;
  color: #333;
}
nav ul li.user-account .account-menu .user-info .user-email {
  font-size: 0.85rem;
  color: #666;
}
nav ul li.user-account .account-menu .menu-separator {
  height: 1px;
  background: #eee;
  margin: 0;
  padding: 0;
}
nav ul li.user-account .account-menu li {
  display: block;
  width: 100%;
}
nav ul li.user-account .account-menu li a {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav ul li.user-account .account-menu li a i {
  margin-right: 8px;
  color: #5a2da9;
}
nav ul li.user-account .account-menu li a:hover {
  background: #f5f5f5;
}

.scrolled nav ul li a {
  color: #333;
}

.scrolled nav ul li.active a {
  background: rgba(0, 0, 0, 0.05);
}

.scrolled nav ul li.social-icon a {
  background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .transparent-header .container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 250px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    display: none;
  }
  nav ul li {
    width: 100%;
    margin: 0;
  }
  nav ul li a {
    color: #333;
    padding: 10px 20px;
    width: 100%;
  }
  nav ul li a:hover {
    border-radius: 0;
    background: #f5f5f5;
  }
  nav ul li.active > a {
    border-radius: 0;
    background: #f5f5f5;
  }
  nav ul li .submenu {
    position: static;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    background: #f8f8f8;
  }
  nav ul li.social-icon {
    margin: 10px 20px;
  }
  nav ul li.social-icon a {
    background: #f5f5f5;
    color: #5a2da9;
  }
  nav ul li.user-account {
    margin: 10px 0;
  }
  nav ul li.user-account .account-link {
    border-radius: 0;
    margin: 0;
    width: 100%;
  }
  nav ul li.user-account .account-menu {
    position: static;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
}
/*
 * FICHIER SCSS PRINCIPAL
 *
 * Ce fichier importe tous les modules SCSS pour former un CSS complet
 */
/* 
 * STYLES POUR LES HEXAGONES
 * Ce fichier contient tous les styles pour les différents types d'hexagones du site
 */
.page-page h1, .page-page h2, .page-page h3, .page-page h4, .page-page h5, .page-page h6, .page-section h1, .page-section h2, .page-section h3, .page-section h4, .page-section h5, .page-section h6 {
  position: relative;
  display: block;
  font-weight: 700;
  color: white;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4);
  -webkit-animation: fadeInLeft 0.5s ease-out forwards;
          animation: fadeInLeft 0.5s ease-out forwards;
}
.page-page h1::before, .page-page h2::before, .page-page h3::before, .page-page h4::before, .page-page h5::before, .page-page h6::before, .page-section h1::before, .page-section h2::before, .page-section h3::before, .page-section h4::before, .page-section h5::before, .page-section h6::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: -1;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.page-page h1:hover::before, .page-page h2:hover::before, .page-page h3:hover::before, .page-page h4:hover::before, .page-page h5:hover::before, .page-page h6:hover::before, .page-section h1:hover::before, .page-section h2:hover::before, .page-section h3:hover::before, .page-section h4:hover::before, .page-section h5:hover::before, .page-section h6:hover::before {
  -webkit-transform: translateY(-50%) scale(1.1) rotate(3deg);
          transform: translateY(-50%) scale(1.1) rotate(3deg);
  -webkit-filter: brightness(1.3) contrast(1.1);
          filter: brightness(1.3) contrast(1.1);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
.page-page h1, .page-section h1 {
  font-size: 2.5rem;
}
.page-page h1:before, .page-section h1:before {
  --hexagon-width: calc(250px * var(--hexagon-title-scale));
  width: var(--hexagon-width);
  height: calc(var(--hexagon-width) * var(--hexagon-ratio) * var(--hexagon-title-boost));
  background: linear-gradient(135deg, #0421e0, #5a2da9);
}
.page-page h2, .page-section h2 {
  font-size: 2rem;
}
.page-page h2:before, .page-section h2:before {
  --hexagon-width: calc(200px * var(--hexagon-title-scale));
  width: var(--hexagon-width);
  height: calc(var(--hexagon-width) * var(--hexagon-ratio) * var(--hexagon-title-boost));
  background: linear-gradient(135deg, #5a2da9, #9f4dff);
}
.page-page h3, .page-section h3 {
  font-size: 1.5rem;
}
.page-page h3:before, .page-section h3:before {
  --hexagon-width: calc(170px * var(--hexagon-title-scale));
  width: var(--hexagon-width);
  height: calc(var(--hexagon-width) * var(--hexagon-ratio) * var(--hexagon-title-boost));
  background: linear-gradient(135deg, #18c7d4, #32f6a8);
}
.page-page h4:before, .page-page h5:before, .page-page h6:before, .page-section h4:before, .page-section h5:before, .page-section h6:before {
  --hexagon-width: calc(150px * var(--hexagon-title-scale));
  width: var(--hexagon-width);
  height: calc(var(--hexagon-width) * var(--hexagon-ratio) * var(--hexagon-title-boost));
  background: linear-gradient(135deg, #ffcb45, #ff9900);
}

@-moz-document url-prefix() {
  .page-page h1:hover::before,
  .page-page h2:hover::before,
  .page-page h3:hover::before,
  .page-page h4:hover::before,
  .page-page h5:hover::before,
  .page-page h6:hover::before,
  .page-section h1:hover::before,
  .page-section h2:hover::before,
  .page-section h3:hover::before,
  .page-section h4:hover::before,
  .page-section h5:hover::before,
  .page-section h6:hover::before {
    transform: translateY(-50%) scale(1.1) rotate(3deg) !important;
    filter: brightness(1.3) contrast(1.1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35) !important;
  }
}
.page-section.hero h2:before {
  background: linear-gradient(135deg, #5a2da9, #9f4dff);
}

.page-section.text_media h2:before {
  background: linear-gradient(135deg, #18c7d4, #32f6a8);
}

.page-section.features h2:before {
  background: linear-gradient(135deg, #ffcb45, #ff9900);
}

.page-section.testimonials h2:before {
  background: linear-gradient(135deg, #ff5000, #ff9977);
}

.page-section.cta h2:before {
  background: linear-gradient(135deg, #ff1800, #ff7e7e);
}

.page-section.team h2:before {
  background: linear-gradient(135deg, #ff0033, #ff6b9e);
}

.page-section.values h2:before {
  background: linear-gradient(135deg, #0421e0, #5a2da9);
}

.page-section.faq h2:before {
  background: linear-gradient(135deg, #5a2da9, #9f4dff);
}

.page-section.contact h2:before {
  background: linear-gradient(135deg, #18c7d4, #32f6a8);
}

.page-section.about h2:before {
  background: linear-gradient(135deg, #ffcb45, #ff9900);
}

.page-section.services h2:before {
  background: linear-gradient(135deg, #ff5000, #ff9977);
}

.page-section.gallery h2:before {
  background: linear-gradient(135deg, #ff1800, #ff7e7e);
}

.page-section.blog h2:before {
  background: linear-gradient(135deg, #ff0033, #ff6b9e);
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes hexagonEntranceAndFloatOdd {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50vh) scale(0.8) rotate(10deg);
            transform: translateY(-50vh) scale(0.8) rotate(10deg);
  }
  5% {
    -webkit-transform: translateY(10px) scale(1.05) rotate(-2deg);
            transform: translateY(10px) scale(1.05) rotate(-2deg);
    opacity: 1;
  }
  7% {
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
    opacity: 1;
  }
  53.5% {
    -webkit-transform: translateY(-7px) scale(1) rotate(0);
            transform: translateY(-7px) scale(1) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
  }
}
@keyframes hexagonEntranceAndFloatOdd {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50vh) scale(0.8) rotate(10deg);
            transform: translateY(-50vh) scale(0.8) rotate(10deg);
  }
  5% {
    -webkit-transform: translateY(10px) scale(1.05) rotate(-2deg);
            transform: translateY(10px) scale(1.05) rotate(-2deg);
    opacity: 1;
  }
  7% {
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
    opacity: 1;
  }
  53.5% {
    -webkit-transform: translateY(-7px) scale(1) rotate(0);
            transform: translateY(-7px) scale(1) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
  }
}
@-webkit-keyframes hexagonEntranceAndFloatEven {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50vh) scale(0.8) rotate(10deg);
            transform: translateY(-50vh) scale(0.8) rotate(10deg);
  }
  5% {
    -webkit-transform: translateY(10px) scale(1.05) rotate(-2deg);
            transform: translateY(10px) scale(1.05) rotate(-2deg);
    opacity: 1;
  }
  7% {
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
    opacity: 1;
  }
  53.5% {
    -webkit-transform: translateY(7px) scale(1) rotate(0);
            transform: translateY(7px) scale(1) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
  }
}
@keyframes hexagonEntranceAndFloatEven {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50vh) scale(0.8) rotate(10deg);
            transform: translateY(-50vh) scale(0.8) rotate(10deg);
  }
  5% {
    -webkit-transform: translateY(10px) scale(1.05) rotate(-2deg);
            transform: translateY(10px) scale(1.05) rotate(-2deg);
    opacity: 1;
  }
  7% {
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
    opacity: 1;
  }
  53.5% {
    -webkit-transform: translateY(7px) scale(1) rotate(0);
            transform: translateY(7px) scale(1) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
  }
}
.hexagon-banner.floaty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
  margin-top: 30px;
  pointer-events: auto;
}
.hexagon-banner.floaty .flat-hexagon-link {
  position: relative;
}
.hexagon-banner.floaty .flat-hexagon-link .flat-hexagon {
  width: var(--hexagon-width);
  height: calc(var(--hexagon-width) * var(--hexagon-ratio));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: gray;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  -webkit-animation: floatHex 6s ease-in-out infinite alternate;
          animation: floatHex 6s ease-in-out infinite alternate;
}
.hexagon-banner.floaty .flat-hexagon-link .hexagon-text {
  font-weight: 600;
  color: white;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hexagon-banner.floaty .flat-hexagon-link:hover .flat-hexagon {
  -webkit-transform: scale(1.05) rotate(0deg);
          transform: scale(1.05) rotate(0deg);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.hexagon-banner.floaty .flat-hexagon-link:nth-child(1) .flat-hexagon {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.hexagon-banner.floaty .flat-hexagon-link:nth-child(2) .flat-hexagon {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.hexagon-banner.floaty .flat-hexagon-link:nth-child(3) .flat-hexagon {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.hexagon-banner.floaty .flat-hexagon-link:nth-child(4) .flat-hexagon {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.hexagon-banner.floaty .flat-hexagon-link:nth-child(5) .flat-hexagon {
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.hexagon-banner.floaty .flat-hexagon-link:nth-child(6) .flat-hexagon {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.hexagon-banner.floaty .flat-hexagon-link:nth-child(7) .flat-hexagon {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@-webkit-keyframes floatHex {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0deg);
            transform: translateY(-6px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
}

@keyframes floatHex {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0deg);
            transform: translateY(-6px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
}
.hexagon-banner.staggered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
  pointer-events: auto;
}
.hexagon-banner.staggered .flat-hexagon-link {
  position: relative;
}
.hexagon-banner.staggered .flat-hexagon-link:nth-child(odd) {
  top: 0;
}
.hexagon-banner.staggered .flat-hexagon-link:nth-child(even) {
  top: 10px;
}
.hexagon-banner.staggered .flat-hexagon-link .flat-hexagon {
  --hexagon-width: 100px;
  width: var(--hexagon-width);
  height: calc(var(--hexagon-width) * var(--hexagon-ratio));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: gray;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hexagon-banner.staggered .flat-hexagon-link .hexagon-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hexagon-banner.staggered .flat-hexagon-link:hover .flat-hexagon {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
  .hexagon-banner.staggered .flat-hexagon-link {
    top: 0 !important;
  }
  .hexagon-banner.staggered .flat-hexagon-link .flat-hexagon {
    --hexagon-width: 100px;
  }
  .hexagon-banner.staggered .flat-hexagon-link .flat-hexagon .hexagon-text {
    font-size: 0.8rem;
  }
}
.hexagon-banner {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  width: 90%;
  max-width: 900px;
  z-index: 5;
  opacity: 0.7;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease, -webkit-transform 0.8s ease;
  pointer-events: none;
}
.hexagon-banner .hexagon-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  gap: 10px;
}
.hexagon-banner .hexagon-row.row-1 {
  margin-bottom: 20px;
}
.hexagon-banner .hexagon-row.row-2 {
  margin-top: 20px;
}
.hexagon-banner .flat-hexagon-link {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: auto;
}
.hexagon-banner .flat-hexagon-link.row-1:nth-child(odd) {
  -webkit-animation: hexagonEntranceAndFloatOdd 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
          animation: hexagonEntranceAndFloatOdd 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.hexagon-banner .flat-hexagon-link.row-1:nth-child(even) {
  -webkit-animation: hexagonEntranceAndFloatEven 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
          animation: hexagonEntranceAndFloatEven 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.hexagon-banner .flat-hexagon-link.row-2:nth-child(odd) {
  -webkit-animation: hexagonEntranceAndFloatEven 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
          animation: hexagonEntranceAndFloatEven 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.hexagon-banner .flat-hexagon-link.row-2:nth-child(even) {
  -webkit-animation: hexagonEntranceAndFloatOdd 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
          animation: hexagonEntranceAndFloatOdd 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.hexagon-banner .flat-hexagon-link:hover {
  z-index: 10;
}
.hexagon-banner .flat-hexagon-link:hover .flat-hexagon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  -webkit-filter: brightness(1.2) contrast(1.1);
          filter: brightness(1.2) contrast(1.1);
}
.hexagon-banner .flat-hexagon-link:focus {
  outline: none;
}
.hexagon-banner .flat-hexagon-link:focus .flat-hexagon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 10px 30px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 10px 30px rgba(0, 0, 0, 0.35);
}
.hexagon-banner .flat-hexagon-link .flat-hexagon {
  --hexagon-width: 140px;
  position: relative;
  width: var(--hexagon-width);
  height: calc(var(--hexagon-width) * var(--hexagon-ratio));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hexagon-banner .flat-hexagon-link .flat-hexagon .hexagon-text {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  color: white;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.hexagon-banner .flat-hexagon-link:nth-child(1) .flat-hexagon {
  background: linear-gradient(135deg, #0421e0, #5a2da9);
}
.hexagon-banner .flat-hexagon-link:nth-child(2) .flat-hexagon {
  background: linear-gradient(135deg, #5a2da9, #9f4dff);
}
.hexagon-banner .flat-hexagon-link:nth-child(3) .flat-hexagon {
  background: linear-gradient(135deg, #18c7d4, #32f6a8);
}
.hexagon-banner .flat-hexagon-link:nth-child(4) .flat-hexagon {
  background: linear-gradient(135deg, #ffcb45, #ff9900);
}
.hexagon-banner .flat-hexagon-link:nth-child(5) .flat-hexagon {
  background: linear-gradient(135deg, #ff5000, #ff9977);
}
.hexagon-banner .flat-hexagon-link:nth-child(6) .flat-hexagon {
  background: linear-gradient(135deg, #ff1800, #ff7e7e);
}
.hexagon-banner .flat-hexagon-link:nth-child(7) .flat-hexagon {
  background: linear-gradient(135deg, #ff0033, #ff6b9e);
}
.hexagon-banner .flat-hexagon-link:nth-child(3) .flat-hexagon .hexagon-text, .hexagon-banner .flat-hexagon-link:nth-child(4) .flat-hexagon .hexagon-text {
  color: #333333;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.hexagon-banner .flat-hexagon-link:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.hexagon-banner .flat-hexagon-link:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.hexagon-banner .flat-hexagon-link:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.hexagon-banner .flat-hexagon-link:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.hexagon-banner .flat-hexagon-link:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.hexagon-banner .flat-hexagon-link:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.hexagon-banner .flat-hexagon-link:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.hexagon-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px 0;
  position: relative;
}
.hexagon-bar:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(123, 66, 142, 0.3)), color-stop(rgba(76, 175, 80, 0.3)), color-stop(rgba(246, 201, 48, 0.3)), to(rgba(255, 112, 67, 0.3)));
  background: linear-gradient(to right, rgba(123, 66, 142, 0.3), rgba(76, 175, 80, 0.3), rgba(246, 201, 48, 0.3), rgba(255, 112, 67, 0.3));
  z-index: 0;
}
.hexagon-bar .hexagon-item {
  --hexagon-width: 120px;
  position: relative;
  width: var(--hexagon-width);
  height: var(--hexagon-width);
  margin: 0 -15px;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hexagon-bar .hexagon-item:hover {
  -webkit-transform: translateY(-10px) scale(1.05);
          transform: translateY(-10px) scale(1.05);
  z-index: 2;
}
.hexagon-bar .hexagon-item .hexagon-inner {
  width: 100%;
  height: calc(var(--hexagon-width) * var(--hexagon-ratio));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.hexagon-bar .hexagon-item .hexagon-text {
  font-weight: bold;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #333333;
}
.hexagon-bar .hexagon-item:nth-child(1) .hexagon-inner {
  background: linear-gradient(135deg, rgba(123, 66, 142, 0.9), rgba(123, 66, 142, 0.7));
}
.hexagon-bar .hexagon-item:nth-child(2) .hexagon-inner {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.7));
}
.hexagon-bar .hexagon-item:nth-child(3) .hexagon-inner {
  background: linear-gradient(135deg, rgba(246, 201, 48, 0.9), rgba(246, 201, 48, 0.7));
}
.hexagon-bar .hexagon-item:nth-child(4) .hexagon-inner {
  background: linear-gradient(135deg, rgba(255, 112, 67, 0.9), rgba(255, 112, 67, 0.7));
}
.hexagon-bar .hexagon-item:nth-child(5) .hexagon-inner {
  background: linear-gradient(135deg, rgba(123, 66, 142, 0.8), rgba(76, 175, 80, 0.8));
}
.hexagon-bar .hexagon-item:nth-child(6) .hexagon-inner {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.8), rgba(246, 201, 48, 0.8));
}
.hexagon-bar .hexagon-item:nth-child(7) .hexagon-inner {
  background: linear-gradient(135deg, rgba(246, 201, 48, 0.8), rgba(255, 112, 67, 0.8));
}
.hexagon-bar .hexagon-item:nth-child(1) .hexagon-text, .hexagon-bar .hexagon-item:nth-child(2) .hexagon-text, .hexagon-bar .hexagon-item:nth-child(4) .hexagon-text, .hexagon-bar .hexagon-item:nth-child(5) .hexagon-text, .hexagon-bar .hexagon-item:nth-child(6) .hexagon-text, .hexagon-bar .hexagon-item:nth-child(7) .hexagon-text {
  color: white;
}
.hexagon-bar .hexagon-item:nth-child(3) .hexagon-text {
  color: #333333;
}

@media (max-width: 1200px) {
  .page-page h1:before, .page-section h1:before {
    --hexagon-width: calc(220px * var(--hexagon-title-scale));
  }
  .page-page h2:before, .page-section h2:before {
    --hexagon-width: calc(180px * var(--hexagon-title-scale));
  }
  .page-page h3:before, .page-section h3:before {
    --hexagon-width: calc(150px * var(--hexagon-title-scale));
  }
  .page-page h4:before, .page-page h5:before, .page-page h6:before, .page-section h4:before, .page-section h5:before, .page-section h6:before {
    --hexagon-width: calc(130px * var(--hexagon-title-scale));
  }
  .hexagon-banner .flat-hexagon-link .flat-hexagon {
    --hexagon-width: 130px;
  }
}
@media (max-width: 992px) {
  .page-page h1, .page-section h1 {
    font-size: 2.2rem;
  }
  .page-page h1:before, .page-section h1:before {
    --hexagon-width: calc(200px * var(--hexagon-title-scale));
  }
  .page-page h2, .page-section h2 {
    font-size: 1.8rem;
  }
  .page-page h2:before, .page-section h2:before {
    --hexagon-width: calc(160px * var(--hexagon-title-scale));
  }
  .page-page h3, .page-section h3 {
    font-size: 1.4rem;
  }
  .page-page h3:before, .page-section h3:before {
    --hexagon-width: calc(135px * var(--hexagon-title-scale));
  }
  .page-page h4:before, .page-page h5:before, .page-page h6:before, .page-section h4:before, .page-section h5:before, .page-section h6:before {
    --hexagon-width: calc(120px * var(--hexagon-title-scale));
  }
  .hexagon-banner {
    top: 42%;
  }
  .hexagon-banner .flat-hexagon-link .flat-hexagon {
    --hexagon-width: 120px;
  }
  .hexagon-banner .flat-hexagon-link .flat-hexagon .hexagon-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .page-page h1:before, .page-page h2:before, .page-page h3:before, .page-page h4:before, .page-page h5:before, .page-page h6:before, .page-section h1:before, .page-section h2:before, .page-section h3:before, .page-section h4:before, .page-section h5:before, .page-section h6:before {
    left: -15px;
  }
  .page-page h1, .page-section h1 {
    font-size: 2rem;
  }
  .page-page h1:before, .page-section h1:before {
    --hexagon-width: calc(180px * var(--hexagon-title-scale));
  }
  .page-page h2, .page-section h2 {
    font-size: 1.6rem;
  }
  .page-page h2:before, .page-section h2:before {
    --hexagon-width: calc(150px * var(--hexagon-title-scale));
  }
  .page-page h3, .page-section h3 {
    font-size: 1.4rem;
  }
  .page-page h3:before, .page-section h3:before {
    --hexagon-width: calc(120px * var(--hexagon-title-scale));
  }
  .page-page h4:before, .page-page h5:before, .page-page h6:before, .page-section h4:before, .page-section h5:before, .page-section h6:before {
    --hexagon-width: calc(100px * var(--hexagon-title-scale));
  }
  .hexagon-banner {
    top: 40%;
    width: 95%;
  }
  .hexagon-banner .hexagon-row {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  .hexagon-banner .hexagon-row.row-1, .hexagon-banner .hexagon-row.row-2 {
    margin: 10px 0;
  }
  .hexagon-banner .flat-hexagon-link .flat-hexagon {
    --hexagon-width: 100px;
  }
  .hexagon-banner .flat-hexagon-link .flat-hexagon .hexagon-text {
    font-size: 0.85rem;
  }
  .hexagon-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hexagon-bar:before {
    height: 0;
  }
  .hexagon-bar .hexagon-item {
    margin: 10px 0;
  }
}
@media (max-width: 576px) {
  .page-page h1:before, .page-page h2:before, .page-page h3:before, .page-page h4:before, .page-page h5:before, .page-page h6:before, .page-section h1:before, .page-section h2:before, .page-section h3:before, .page-section h4:before, .page-section h5:before, .page-section h6:before {
    left: -10px;
  }
  .page-page h1, .page-section h1 {
    font-size: 1.8rem;
  }
  .page-page h1:before, .page-section h1:before {
    --hexagon-width: calc(160px * var(--hexagon-title-scale));
  }
  .page-page h2, .page-section h2 {
    font-size: 1.5rem;
  }
  .page-page h2:before, .page-section h2:before {
    --hexagon-width: calc(130px * var(--hexagon-title-scale));
  }
  .page-page h3, .page-section h3 {
    font-size: 1.3rem;
  }
  .page-page h3:before, .page-section h3:before {
    --hexagon-width: calc(110px * var(--hexagon-title-scale));
  }
  .page-page h4:before, .page-page h5:before, .page-page h6:before, .page-section h4:before, .page-section h5:before, .page-section h6:before {
    --hexagon-width: calc(90px * var(--hexagon-title-scale));
  }
  .hexagon-banner {
    top: 30%;
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
  .hexagon-banner .hexagon-row {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .hexagon-banner .flat-hexagon-link .flat-hexagon {
    --hexagon-width: 80px;
  }
  .hexagon-banner .flat-hexagon-link .flat-hexagon .hexagon-text {
    font-size: 0.98rem;
  }
}
@media (max-width: 375px) {
  .page-page h1:before, .page-page h2:before, .page-page h3:before, .page-page h4:before, .page-page h5:before, .page-page h6:before, .page-section h1:before, .page-section h2:before, .page-section h3:before, .page-section h4:before, .page-section h5:before, .page-section h6:before {
    left: -8px;
  }
  .page-page h1, .page-section h1 {
    font-size: 1.6rem;
  }
  .page-page h1:before, .page-section h1:before {
    --hexagon-width: calc(140px * var(--hexagon-title-scale));
  }
  .page-page h2, .page-section h2 {
    font-size: 1.4rem;
  }
  .page-page h2:before, .page-section h2:before {
    --hexagon-width: calc(120px * var(--hexagon-title-scale));
  }
  .page-page h3, .page-section h3 {
    font-size: 1.2rem;
  }
  .page-page h3:before, .page-section h3:before {
    --hexagon-width: calc(100px * var(--hexagon-title-scale));
  }
  .page-page h4:before, .page-page h5:before, .page-page h6:before, .page-section h4:before, .page-section h5:before, .page-section h6:before {
    --hexagon-width: calc(80px * var(--hexagon-title-scale));
  }
  .hexagon-banner .flat-hexagon-link .flat-hexagon {
    --hexagon-width: 70px;
  }
  .hexagon-banner .flat-hexagon-link .flat-hexagon .hexagon-text {
    font-size: 0.7rem;
  }
}
/*
 * FICHIER SCSS PRINCIPAL
 *
 * Ce fichier importe tous les modules SCSS pour former un CSS complet
 */
/* 
 * PRISMES - Styles spécifiques pour la page d'accueil
 * Ce fichier contient tous les styles spécifiques à la page d'accueil et ses sections :
 * - Hero section
 * - Sections de fonctionnalités
 * - Sections de témoignages
 * - Sections CTA
 * - Et autres spécificités de la home
 */
.home-page .hero-section {
  height: 100vh;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  margin-bottom: 60px;
  overflow: hidden;
  /* 1. CORRECTION POUR HERO-CONTENT - Centrage et zone lisible */
}
.home-page .hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(123, 66, 142, 0.8), rgba(76, 175, 80, 0.5), rgba(255, 112, 67, 0.6));
  z-index: 1;
}
.home-page .hero-section .container {
  position: relative;
  z-index: 2;
}
.home-page .hero-section .hero-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  z-index: 10;
  margin: 200px auto 0 auto;
  text-align: center;
  padding: 0 20px;
}
.home-page .hero-section .hero-content .hero-btn-left {
  display: inline-block;
  margin: 0;
  text-align: left;
  position: absolute;
  left: clamp(15px, 5vw, 40px);
}
.home-page .hero-section .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}
.home-page .hero-section .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: white;
  line-height: 1.6;
}
.home-page .hero-section .hero-content.text-left {
  margin-left: 0;
  text-align: left;
}
.home-page .hero-section .animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.home-page .hero-section .animated-bg .hexagon-float {
  --hexagon-width: 60px;
  position: absolute;
  width: var(--hexagon-width);
  height: calc(var(--hexagon-width) * var(--hexagon-ratio));
  background: rgba(123, 66, 142, 0.3);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-animation: float 8s infinite ease-in-out;
          animation: float 8s infinite ease-in-out;
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.home-page .hero-section .animated-bg .hexagon-float:nth-child(1) {
  top: 10%;
  left: 10%;
  --hexagon-width: 80px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.home-page .hero-section .animated-bg .hexagon-float:nth-child(2) {
  top: 60%;
  left: 15%;
  --hexagon-width: 120px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.home-page .hero-section .animated-bg .hexagon-float:nth-child(3) {
  top: 20%;
  left: 80%;
  --hexagon-width: 100px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.home-page .hero-section .animated-bg .hexagon-float:nth-child(4) {
  top: 70%;
  left: 75%;
  --hexagon-width: 70px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.home-page .hero-section .animated-bg .hexagon-float:nth-child(5) {
  top: 40%;
  left: 40%;
  --hexagon-width: 150px;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(10deg);
            transform: translateY(-20px) rotate(10deg);
    opacity: 0.8;
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(10deg);
            transform: translateY(-20px) rotate(10deg);
    opacity: 0.8;
  }
}
.home-page .hero-section img.hero-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  max-width: 400px;
  height: auto;
}
.home-page .hero-section .hero-contact {
  position: absolute;
  bottom: clamp(15px, 5vh, 40px);
  right: clamp(10px, 4vw, 30px);
  font-size: 110%;
  z-index: 10;
}
.home-page .features-grid {
  margin-top: 40px;
}
.home-page .feature-item {
  padding: 40px 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: white;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.home-page .feature-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(123, 66, 142, 0.05), rgba(255, 112, 67, 0.05));
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}
.home-page .feature-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  border-color: rgba(123, 66, 142, 0.2);
}
.home-page .feature-item:hover:before {
  height: 100%;
}
.home-page .feature-item .feature-icon {
  --hexagon-width: 80px;
  width: var(--hexagon-width);
  height: var(--hexagon-width);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
}
.home-page .feature-item .feature-icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #4285f4, #34a853);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-page .feature-item .feature-icon i {
  font-size: 2rem;
  color: #4285f4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-page .feature-item:hover .feature-icon:before {
  opacity: 0.4;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.home-page .feature-item:hover .feature-icon i {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.home-page .feature-item h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}
.home-page .feature-item h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#4285f4), to(#34a853));
  background: linear-gradient(to right, #4285f4, #34a853);
}
.home-page .feature-item p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}
.home-page .feature-item.animated {
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
}
.home-page .feature-item:nth-child(1).animated {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.home-page .feature-item:nth-child(2).animated {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.home-page .feature-item:nth-child(3).animated {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.home-page .testimonials-slider {
  padding: 40px 0;
}
.home-page .testimonials-slider .testimonial-item {
  padding: 40px;
  text-align: center;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-page .testimonials-slider .testimonial-item:hover {
  opacity: 1;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.home-page .testimonials-slider .testimonial-item .testimonial-content {
  font-size: 1.1rem;
  line-height: 1.8;
}
.home-page .testimonials-slider .testimonial-item .testimonial-content:before {
  content: "“";
  font-size: 4rem;
  color: #4285f4;
  line-height: 0;
  display: block;
  margin-bottom: 20px;
}
.home-page .testimonials-slider .testimonial-item .testimonial-author {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-page .testimonials-slider .testimonial-item .testimonial-author .author-avatar {
  margin-right: 0;
  margin-bottom: 15px;
}
.home-page .cta-banner {
  padding: 80px 30px;
  background-image: -webkit-gradient(linear, left top, right top, from(#4285f4), to(#34a853));
  background-image: linear-gradient(to right, #4285f4, #34a853);
  color: white;
  border-radius: 0;
  margin: 80px 0;
}
.home-page .cta-banner h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.home-page .cta-banner .button {
  background-color: white;
  color: #4285f4;
  font-weight: bold;
  padding: 15px 40px;
  font-size: 1.1rem;
}
.home-page .cta-banner .button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.home-page .hero-content {
  -webkit-animation: fadeInUp 1s ease;
          animation: fadeInUp 1s ease;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .home-page .hero-section {
    height: 70vh;
  }
  .home-page .hero-section .hero-content h1 {
    font-size: 2.5rem;
  }
  .home-page .hero-section img.hero-logo {
    max-width: 320px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(1) {
    --hexagon-width: 70px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(2) {
    --hexagon-width: 100px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(3) {
    --hexagon-width: 90px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(4) {
    --hexagon-width: 60px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(5) {
    --hexagon-width: 120px;
  }
}
@media (max-width: 768px) {
  .home-page .hero-section {
    height: auto;
    padding: 120px 0 80px;
    /*
        .hero-contact {
          position: relative;
          bottom: auto;
          right: auto;
          margin: 30px auto;
          display: flex;
          justify-content: center;
          gap: 15px;
        }
    */
  }
  .home-page .hero-section img.hero-logo {
    max-width: 240px;
    top: 5px;
    left: 5px;
  }
  .home-page .hero-section .hero-content h1 {
    font-size: 2rem;
  }
  .home-page .hero-section .hero-content p {
    font-size: 1rem;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(1) {
    --hexagon-width: 60px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(2) {
    --hexagon-width: 90px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(3) {
    --hexagon-width: 80px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(4) {
    --hexagon-width: 50px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(5) {
    --hexagon-width: 100px;
  }
  .home-page .cta-banner {
    padding: 40px 20px;
  }
  .home-page .cta-banner h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .home-page .hero-content {
    text-align: center;
  }
  .home-page .hero-section img.hero-logo {
    max-width: 180px;
  }
  .home-page .hero-section .hero-content h1 {
    font-size: 1.8rem;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(1) {
    --hexagon-width: 50px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(2) {
    --hexagon-width: 80px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(3) {
    --hexagon-width: 70px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(4) {
    --hexagon-width: 40px;
  }
  .home-page .hero-section .animated-bg .hexagon-float:nth-child(5) {
    --hexagon-width: 90px;
  }
}

body {
  background-color: #f5f5f7;
  background-image: radial-gradient(circle at 20% 30%, rgba(123, 66, 142, 0.4), transparent 40%), radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.4), transparent 40%), radial-gradient(circle at 30% 70%, rgba(246, 201, 48, 0.4), transparent 40%), radial-gradient(circle at 70% 80%, rgba(255, 112, 67, 0.4), transparent 40%);
  background-attachment: fixed;
  position: relative;
}
body:before {
  content: "";
  position: fixed;
  top: min(5vw, 69px);
  right: 0;
  width: clamp(120px, 30vw, 500px);
  height: clamp(120px, 30vw, 500px);
  background-image: url("../img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1' d='M20,20 L180,180 M60,20 L180,140 M20,60 L140,180'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.3;
  z-index: -2;
  pointer-events: none;
}

@media (max-width: 576px) {
  body:before {
    width: 140px;
    height: 140px;
    top: 10px;
    right: 10px;
  }
}
main .container {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gradient-storage.gradient-1::after {
  background: linear-gradient(135deg, #5b6cff, #9187e0);
  display: none;
}
.gradient-storage.gradient-2::after {
  background: linear-gradient(135deg, #937eff, #c7b9ff);
  display: none;
}
.gradient-storage.gradient-3::after {
  background: linear-gradient(135deg, #3be8d3, #8bfde2);
  display: none;
}
.gradient-storage.gradient-4::after {
  background: linear-gradient(135deg, #ffde75, #ffe9a0);
  display: none;
}
.gradient-storage.gradient-5::after {
  background: linear-gradient(135deg, #ffad7f, #ffd0ba);
  display: none;
}
.gradient-storage.gradient-6::after {
  background: linear-gradient(135deg, #ff8a7a, #ffbeb5);
  display: none;
}
.gradient-storage.gradient-7::after {
  background: linear-gradient(135deg, #ff71a0, #ffc0d6);
  display: none;
}
.gradient-storage.gradient-8::after {
  background: linear-gradient(135deg, #bf9fee, #dccfff);
  display: none;
}
.gradient-storage.gradient-9::after {
  background: linear-gradient(135deg, #7ee8ba, #c9ffe3);
  display: none;
}
.gradient-storage.gradient-10::after {
  background: linear-gradient(135deg, #a5e1ff, #d5f2ff);
  display: none;
}
.gradient-storage.gradient-11::after {
  background: linear-gradient(135deg, #ffc988, #ffe2c9);
  display: none;
}
.gradient-storage.gradient-12::after {
  background: linear-gradient(135deg, #c5ff8a, #e5ffd0);
  display: none;
}
.gradient-storage.gradient-13::after {
  background: linear-gradient(135deg, #ff9ee6, #ffd5f5);
  display: none;
}
.gradient-storage.gradient-14::after {
  background: linear-gradient(135deg, #aeddff, #d8eeff);
  display: none;
}

/*
 * COMMENT UTILISER CE FICHIER
 * ---------------------------
 * Ce fichier main.scss est le point d'entrée pour la compilation SCSS.
 * 
 * Pour compiler, exécutez:
 * sass main.scss:../public/css/main.css --style=compressed
 *
 * STRUCTURE DES MODULES:
 * - variables.scss: Variables globales partagées entre les modules
 * - style.scss: Styles de base et composants partagés
 * - nav.scss: Styles pour la navigation et le header
 * - hexagons.scss: Tous les styles liés aux hexagones et leurs animations
 * - home.scss: Styles spécifiques à la page d'accueil
 *//*# sourceMappingURL=main.css.map */