/* Styles additionnels pour l'animation et la responsivité */

/* Animations au défilement */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des cartes de service */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Animation des boutons */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transition: height 0.3s ease;
  z-index: -1;
}

.btn:hover::after {
  height: 100%;
}

/* Styles pour les tablettes */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .row {
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
}

/* Styles pour les mobiles */
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 3rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .experience-item {
    padding-left: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* Styles pour les petits mobiles */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    display: block;
  }
  
  .footer-column {
    padding: 0;
  }
}

/* Styles pour l'accessibilité */
:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 1001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Styles pour le mode sombre (préparation) */
@media (prefers-color-scheme: dark) {
  :root {
    /* Ces variables seront activées dans une future mise à jour */
    --dark-mode-bg: #121212;
    --dark-mode-text: #f5f5f5;
    --dark-mode-card: #1e1e1e;
  }
}

/* Styles pour l'impression */
@media print {
  header, footer, .hero-buttons, .contact-form, .appointment-calendar {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  
  .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
