/* index.css - Styles spécifiques à la page d'accueil */

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
  }
  
  .btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 10px var(--shadow);
    margin-bottom: 1.5rem;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 15px -3px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px -5px var(--shadow);
  }
  
  .card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
  }
  
  .card p {
    margin-bottom: 1.5rem;
  }
  
  .typing-effect {
    overflow: hidden;
    border-right: 2px solid var(--primary);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
  }
  
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
  }
  
  @media (max-width: 768px) {
    .cards {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      max-width: 100%;
    }
  }
  
  /* === Boutons sans icônes === */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
  }
  