
      :root {
      --primary: #e3cb02;
      --secondary: rgb(41, 38, 15);
      --light: #fff;
      --dark: #1a1a1a;
      --gray: #f5f5f5;
      --menu-bg: rgb(31, 31, 26);
    }
  @font-face {
  font-family: 'AvenirLTStd-Medium';
  src: url('fonts/AvenirLTStd-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'AvenirLTStd-Black';
  src: url('fonts/AvenirLTStd-Black.otf') format('opentype');
}

    html {
  scroll-behavior: smooth;
}

.text-overlay {
      position: absolute;
      top: 40%;
      width: 100%;
      text-align: center;
      color: black;
      font-weight: bold;
      line-height: 1.4;
    }

   .highlight {
  background-color: rgba(227, 203, 2, 0.8); /* Fond semi-transparent */
  display: inline-block;
  font-size: 2.5em;
  padding: 0.2em 0.5em;
  margin: 0.2em 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

   
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'AvenirLTStd-Medium', sans-serif;
      line-height: 1.6;
      color: var(--secondary);
      background-color: var(--light);
      overflow-x: hidden;
    }
   

h1,h2,h3,h4 {
  font-family: 'AvenirLTStd-Black', sans-serif;
}
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
  
    /* Hero Video */
    .video-hero {
      height: 80vh;
      position: relative;
      overflow: hidden;
      margin-top: 70px;
    }
    
    .video-hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      object-fit: cover;
    }
    
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.3);
    }
    
    .video-content {
      position: absolute;
      bottom: 20%;
      left: 10%;
      background: rgba(255, 255, 255, 0.9);
      padding: 2rem;
      max-width: 500px;
      border-left: 5px solid var(--primary);
    }
    
    .video-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--dark);
    }
    
    .video-content p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    
    .btn {
      display: inline-block;
      background: var(--primary);
      color: var(--light);
      padding: 0.8rem 1.8rem;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s;
      border: 2px solid var(--primary);
    }
    
    .btn:hover {
      background: transparent;
      color: var(--primary);
    }
    
    /* Sections */
    section {
      padding: 5rem 0;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .section-title h2,h1 {
      font-size: 2.5rem;
      color: var(--dark);
      position: relative;
      display: inline-block;
    }
    
    .section-title h2,h1::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 3px;
      background: var(--primary);
      bottom: -10px;
      left: 25%;
    }
    
    /* Services */
    .services {
      background-color: var(--gray);
    }
    
    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }
    
    .card {
      background: var(--light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      width: 350px;
      max-width: 100%;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .card-img {
      height: 200px;
      overflow: hidden;
    }
    
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .card:hover .card-img img {
      transform: scale(1.1);
    }
    
    .card-content {
      padding: 1.5rem;
    }
    
    .card-content h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--dark);
    }
    
    .card-content p {
      margin-bottom: 1.5rem;
      color: #666;
    }
    
    .card-content a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
    }
    
    .card-content a i {
      margin-left: 5px;
      transition: transform 0.3s;
    }
    
    .card-content a:hover i {
      transform: translateX(5px);
    }
    
     /* About Section - Effet Parallaxe corrigé */
    .about {
      position: relative;
      overflow: hidden;
      background-color: rgb(183, 182, 182);
    }
    
    .about-content {
      display: flex;
      min-height: 100vh;
    }
    
    .about-img-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      overflow: hidden;
       background-attachment: fixed;
      
    }
    
    .about-img {
      position: sticky;
      top: 0;
      left: 0;
      width: 100%;
      height: 70%;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      transform: translateZ(30px) scale(2);
      
    }
    
    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      background-attachment: fixed;
    }
    
    .about-text {
      width: 50%;
      margin-left: 50%;
      padding: 6rem 3rem;
      background: rgb(183, 182, 182);
      z-index: 2;
    }

    @media (max-width: 992px) {
      .about-content {
        flex-direction: column;
        min-height: auto;
      }
      
      .about-img-container {
        position: relative;
        width: 100%;
        height: 400px;
      }
      
      .about-text {
        width: 100%;
        margin-left: 0;
        padding: 3rem 1.5rem;
      }
    }
    /* Stats */
    .stats {
      background-color: var(--primary);
      color: var(--light);
      text-align: center;
      padding: 3rem 0;
    }
    
    .stats-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 2rem;
    }
    
    .stat-item {
      padding: 1rem;
    }
    
    .stat-item i {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .stat-item h3 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    
    /* Contact */
    .contact {
      background-color: var(--gray);
    }
    
    .contact-container {
      display: flex;
      gap: 3rem;
    }
    
    .contact-info {
      flex: 1;
    }
    
    .contact-info h3 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: var(--dark);
    }
    
    .contact-info p {
      margin-bottom: 2rem;
      line-height: 1.8;
    }
    
    .contact-details {
      margin-bottom: 2rem;
    }
    
    .contact-details div {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .contact-details i {
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
    }
    
    .contact-form {
      flex: 1;
      background: var(--light);
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }
    
    .form-control {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: inherit;
      font-size: 1rem;
      transition: border 0.3s;
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--primary);
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    .submit-btn {
      background: var(--primary);
      color: var(--light);
      border: none;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .submit-btn:hover {
      background: var(--dark);
    }
    
    /* Footer */
    footer {
      background-color: var(--dark);
      color: var(--light);
      padding: 3rem 0 1rem;
    }
    
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2rem;
    }
    
    .footer-col {
      flex: 1;
      min-width: 250px;
    }
    
    .footer-col h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-col h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background: var(--primary);
    }
    
    .footer-col p {
      margin-bottom: 1rem;
      line-height: 1.8;
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 0.8rem;
    }
    
    .footer-links a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: var(--primary);
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
    }
    
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(5, 5, 5, 0.1);
      border-radius: 50%;
      color: var(--light);
      transition: all 0.3s;
    }
    
    .social-links a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .copyright {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .about-content {
        flex-direction: column;
      }
      
      .contact-container {
        flex-direction: column;
      }
      
      .card {
        width: calc(50% - 1rem);
      }
    }
    
    @media (max-width: 768px) {
      
      .video-content {
        left: 5%;
        right: 5%;
        max-width: none;
        bottom: 10%;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .highlight {
        font-size: 1.8em;
      }
      
      .card {
        width: 100%;
      }
    }
    
    @media (max-width: 576px) {
      section {
        padding: 3rem 0;
      }
      
      .video-content {
        padding: 1rem;
        position: relative;
        margin: 2rem auto;
        left: 0;
        right: 0;
        bottom: auto;
      }
      
      .video-content h2 {
        font-size: 1.8rem;
      }
      
      .stats-container {
        flex-direction: column;
      }
      
      .logo {
        font-size: 1.5rem;
      }
      
      .header-container {
        flex-direction: column;
      }
      
      .logo-container, .menu-container {
        width: 100%;
        justify-content: center;
      }
      
      .logo-container {
        padding: 1rem;
      }
      
      .video-hero video {
        display: none;
      }
      .video-hero {
        background-image: url('images/belle-jeune-femme-paie-pour-parking-dans-le-metre-dans-la-rue.jpg');
        background-size: cover;
        background-position: center;
      }
      
      .highlight {
        font-size: 1.5em;
        padding: 0.1em 0.3em;
      }
      
      .text-overlay {
        top: 30%;
      }
      
      .about-text {
        padding: 2rem 1rem;
      }
    }

    .alert {
    transition: opacity 0.5s ease;
}

