﻿@font-face {
  font-family: 'roboto';
  src: url('roboto-regular.ttf') format('truetype');
}

#diaMessage {
  position: fixed;
  left: 50%;
  top: calc(50% - 90px);
  z-index: 100;
  margin: -100px 0 0 -200px;
  background-color: white;
  min-height: 130px;
  box-shadow: 0 0 3px #806BDB inset, 0 0 9px #806BDB;
  border-radius: 9px;
  min-width: 400px;
}
  #diaMessage table {
    padding: 5px;
    width:100%;
  }

.legal-document p {
  text-align: justify;
  padding: 5px 5px 5px 25px;
}

#diaFond {
  position: fixed;
  z-index: 99;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  background-color: lightgrey;
  top: 0;
  width: 100%;
  height: 108%;
  margin: 0px auto;
 }
.gras   { font-weight:bold; }
.italic { font-style:italic; }
.ta_c   { text-align:center !important; }
.rouge  { color: orangered; }
.gris   { color: gray; }
.p_3    { padding: 3px; }
.btn {
  font-size: 1em;
  background-color: #806BDB;
  color: white;
  border-radius: 5px;
  padding: 5px;
  border: 2px solid white;
  text-decoration: none;
  cursor: pointer;
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'roboto' ;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  width: 100%;
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
  }

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

  .nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
  }

    .nav-links a:hover, .nav-links a.active {
      color: #9b87f5;
    }

.demo-btn {
  background-color: #9b87f5;
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: background-color 0.3s;
}

  .demo-btn:hover {
    background-color: #8a72f3;
  }

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

 /* Section Hero */
.hero {
  padding: 60px 0;
  background-color: white;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Texte de la section hero */
.hero-text {
  flex: 1;
}

  .hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
  }

/* Boutons */
.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Images */
.hero-image-desktop {
  flex: 1;
}

  .hero-image-desktop img, .hero-image-mobile img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

/* Cacher l'image mobile en desktop */
.hero-image-mobile {
  display: none;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image-desktop {
    display: none;
  }

  .hero-image-mobile {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
  #diaMessage {
    position: fixed;
    left: unset;
    top: calc(50% - 90px);
    z-index: 100;
    margin: 20px;
    background-color: white;
    min-height: 130px;
    box-shadow: 0 0 3px #806BDB inset, 0 0 9px #806BDB;
    border-radius: 9px;
    min-width: 320px;
  }

}
/*.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #D3E4FD 0%, #D6BCFA 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333;
  }

  .hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
  }

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }*/

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 1rem;
}

.primary-button {
  background-color: #9b87f5;
  color: white;
}

  .primary-button:hover {
    background-color: #8a72f3;
  }

.outline-button {
  background-color: transparent;
  color: #9b87f5;
  border: 2px solid #9b87f5;
}

  .outline-button:hover {
    background-color: #f5f0ff;
  }

.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.full-width {
  width: 100%;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

  .section-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
  }

  .section-header p {
    color: #666;
    font-size: 1.1rem;
  }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #D3E4FD 0%, #D6BCFA 100%);
  padding: 4rem 0;
  text-align: center;
}

  .cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
  }

  .cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #D3E4FD 0%, #D6BCFA 100%);
  padding: 3rem 0;
  text-align: center;
}

  .page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
  }

  .page-header p {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

/* Products */
.products {
  padding: 4rem 0;
  background-color: #fff;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card a{
  position:relative;
  bottom:0px
}

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

.product-icon {
  margin-bottom: 1.5rem;
  text-align: center;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.product-card p {
  color: #666;
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  margin-bottom: 1.5rem;
  min-height: 215px;
}

  .product-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
  }

    .product-features li::before {
      content: '✓';
      color: #9b87f5;
      position: absolute;
      left: 0;
    }

/* Pricing */
.pricing {
  padding: 4rem 0;
  background-color: #fff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

.popular {
  border: 2px solid #9b87f5;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #9b87f5;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-bottom-left-radius: 8px;
}

.pricing-header {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

  .pricing-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
  }

.price {
  margin-bottom: 1rem;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.period {
  color: #666;
}

.pricing-header p {
  color: #666;
}

.pricing-features {
  padding: 0 2rem 2rem;
  min-height: 275px;
}

  .pricing-features ul {
    list-style: none;
  }

  .pricing-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
  }

    .pricing-features li::before {
      content: '✓';
      color: #9b87f5;
      position: absolute;
      left: 0;
    }

.pricing-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

  .faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
  }

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
}

  .faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
  }

  .faq-item p {
    color: #666;
  }

/* Login Section */
.login-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
}

.login-container {
  max-width: 450px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

  .login-header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
  }

  .login-header p {
    color: #666;
  }

.login-form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
  }

  .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.remember-me {
  display: flex;
  align-items: center;
}

  .remember-me input {
    margin-right: 0.5rem;
  }

.forgot-password {
  color: #9b87f5;
  text-decoration: none;
}

  .forgot-password:hover {
    text-decoration: underline;
  }

.login-footer {
  text-align: center;
}

  .login-footer a {
    color: #9b87f5;
    text-decoration: none;
  }

    .login-footer a:hover {
      text-decoration: underline;
    }

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col p {
  color: #ccc;
}

.footer-col ul {
  list-style: none;
}

  .footer-col ul li {
    margin-bottom: 0.5rem;
  }

    .footer-col ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }

      .footer-col ul li a:hover {
        color: #9b87f5;
      }

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  color: #ccc;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #fff;
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

  .cookie-content p {
    flex: 1;
    min-width: 200px;
  }

  .cookie-content a {
    color: #9b87f5;
    text-decoration: underline;
  }

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

  .cookie-buttons button {
    padding: 0.5rem 1rem;
  }

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-form-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #9b87f5;
}

  .contact-form-container h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
  }

  .contact-form-container p {
    color: #666;
    margin-bottom: 1.5rem;
  }

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

  .contact-info-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
  }

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  margin-right: 1rem;
  padding: 0.75rem;
  background-color: #f0ebfe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.contact-method p {
  color: #666;
}

.testimonial-card {
  background: linear-gradient(135deg, #f0ebfe 0%, #e6f1fe 100%);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  padding: 2rem;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  opacity: 0.2;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin: 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

  .testimonial-author strong {
    color: #333;
  }

  .testimonial-author span {
    color: #666;
    font-size: 0.9rem;
  }

.faq-contact {
  max-width: 800px;
  margin: 0 auto;
}

  .faq-contact h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
  }

.faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

  .faq-item h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
  }

    .faq-item h3:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.4rem;
      width: 0.75rem;
      height: 0.75rem;
      background-color: #9b87f5;
      border-radius: 50%;
    }

  .faq-item p {
    color: #666;
  }

/* Form Elements */
.form-group {
  margin-bottom: 1rem;
}

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #9b87f5;
      box-shadow: 0 0 0 2px rgba(155, 135, 245, 0.2);
      outline: none;
    }

  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }

.checkbox {
  display: flex;
  align-items: flex-start;
}

  .checkbox input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
  }

  .checkbox label {
    margin-bottom: 0;
    font-weight: normal;
  }

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: -1;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    display: none;
  }

    .nav-links.active {
      display: flex;
    }

  .faq-items {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
}

/* About Page Specific Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.about-story {
  padding: 4rem 0;
  background-color: #fff;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.about-content p {
  margin-bottom: 1rem;
  color: #555;
}

.about-image img {
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Mission Section */
.mission {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

  .mission h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
  }

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

  .mission-content p {
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
  }

.mission-list {
  list-style-position: inside;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

  .mission-list li {
    margin-bottom: 0.75rem;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
  }

/*    .mission-list li::before {
      content: '✓';
      color: #9b87f5;
      position: absolute;
      left: 0;
    }
*/
/* Values Section */
.values {
  padding: 4rem 0;
  background-color: #fff;
}

  .values h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
  }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

.value-icon {
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.value-card p {
  color: #666;
}

/* Team Section */
.team {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

  .team h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
  }

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #555;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

  .team-member:hover {
    transform: translateY(-5px);
  }

  .team-member img {
    width: 150px;
    /*height: 250px;*/
    object-fit: cover;
  }

  .team-member h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    padding: 0 1.5rem;
    color: #333;
  }

  .team-member .role {
    color: #9b87f5;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding: 0 1.5rem;
  }

  .team-member .bio {
    color: #666;
    font-size: 0.9rem;
    padding: 0 1.5rem 1.5rem;
  }

/* Responsive styles for About page */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
