/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fafbfc;
  color: #1e7b44;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Header avec logo */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(30, 123, 68, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.header-logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

header.scrolled .header-logo {
  height: 40px;
}

nav {
  display: flex;
  gap: 60px;
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-link {
  color: #1e7b44;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 16px 32px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-weight: 500;
}

.nav-link:hover {
  background: #1e7b44;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 123, 68, 0.25);
}

.nav-link i {
  margin-right: 8px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
  position: relative;
  overflow: hidden;
  padding: 140px 20px 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(30, 123, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45, 143, 87, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(30, 123, 68, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  margin: auto;
}

.hero-logo-container {
  margin-bottom: 20px;
  padding: 0;
  background: none;
  box-shadow: none;
  border: none;
}

.logo-hero {
  max-width: 400px;
  width: 100%;
  height: auto;
  animation: fadeInUp 1s ease-out;
  filter: drop-shadow(0 10px 30px)}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #1e7b44;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.2s both;
  font-weight: 700;
  letter-spacing: -2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: 1.6rem;
  color: #495057;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease-out 0.4s both;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #1e7b44, #2d8f57);
  margin: 0 auto 25px;
  animation: fadeInUp 1s ease-out 0.6s both;
  border-radius: 2px;
}

.hero-description {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.8s both;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.cta-button {
  background: linear-gradient(135deg, #1e7b44, #2d8f57);
  color: white;
  border: none;
  padding: 18px 45px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 1s both;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(30, 123, 68, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 123, 68, 0.4);
  background: linear-gradient(135deg, #2d8f57, #40a96b);
}

#services {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
  position: relative;
  padding: 0; /* ou ajuste le padding selon besoin */
}

/* Services - Section d'introduction (fond blanc) */
.services-intro {
  padding: 120px 20px 80px;
  background: #fafbfc;
  position: relative;
}

.intro-content {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1e7b44, #2d8f57);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(30, 123, 68, 0.3);
}

.intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #1e7b44;
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
}

.intro-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text {
  padding: 40px;
  background: #f8f9fa;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-left: 5px solid #1e7b44;
}

.intro-paragraph {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.intro-paragraph strong {
  color: #1e7b44;
  font-weight: 700;
  font-size: 1.3rem;
}

.intro-paragraph em {
  color: #2d8f57;
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(30, 123, 68, 0.1), rgba(45, 143, 87, 0.1));
  padding: 2px 8px;
  border-radius: 4px;
}

.intro-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.intro-feature:hover {
  transform: translateX(10px);
}

.intro-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e7b44, #2d8f57);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.intro-feature-text h4 {
  color: #1e7b44;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.intro-feature-text p {
  color: #666;
  font-size: 0.95rem;
}

/* Services section (fond blanc) */
.services-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Sections générales */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  color: #1e7b44;
  font-size: 2.2rem;
  margin-bottom: 50px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1e7b44, #2d8f57);
  border-radius: 2px;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 20px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 15px 30px;
  border: 2px solid #1e7b44;
  background: white;
  color: #1e7b44;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1e7b44;
  transition: left 0.3s ease;
  z-index: -1;
}

.tab-button.active::before,
.tab-button:hover::before {
  left: 0;
}

.tab-button.active,
.tab-button:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 123, 68, 0.25);
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.tab-content.active {
  display: block;
}

.tab-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

/* Service Items */
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

.service-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  border: 1px solid rgba(30, 123, 68, 0.1);
}

.service-item.aos-animate {
  transform: translateY(0);
  opacity: 1;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

.service-item p {
  margin: 20px 15px 25px;
  font-weight: 500;
  color: #1e7b44;
  font-size: 1rem;
}

/* Gallery */
#gallery {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  background: #fafbfc; /* ou laissez vide pour transparent */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 123, 68, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: white;
}

/* Schedule (fond vert clair) */
#horaires {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
  position: relative;
}

#horaires::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(30, 123, 68, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45, 143, 87, 0.05) 0%, transparent 50%);
  z-index: 1;
}

#horaires > * {
  position: relative;
  z-index: 2;
}

.schedule-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(30, 123, 68, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden; 
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table thead tr {
  background: linear-gradient(135deg, #1e7b44, #2d8f57);
  color: white;
  position: relative; /* Ajout pour le positionnement */
}

.schedule-table thead tr::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  border-radius: 15px 0 0 0; /* Coins arrondis pour l'en-tête */
}

.schedule-table th {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
  letter-spacing: 0.5px;
}

.schedule-table td {
  padding: 18px 25px;
  border-bottom: 1px solid rgba(30, 123, 68, 0.1);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.schedule-row {
  background: white;
  transition: all 0.3s ease;
  position: relative;
}

.schedule-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 0 0 0 15px;
}

.schedule-row:last-child::before {
  border-radius: 0 0 0 15px;
}

.schedule-row:hover {
  background: linear-gradient(135deg, rgba(30, 123, 68, 0.05), rgba(45, 143, 87, 0.05));
  transform: translateX(8px);
  box-shadow: 0 5px 15px rgba(30, 123, 68, 0.1);
}

.schedule-row:hover::before {
  background: linear-gradient(135deg, #1e7b44, #2d8f57);
}

.schedule-row:nth-child(even) {
  background: rgba(248, 249, 250, 0.5);
}

.schedule-row.closed {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(255, 193, 7, 0.05));
  color: #dc3545;
  font-weight: 600;
}

.schedule-row.closed::before {
  background: #dc3545;
}

.schedule-row td:first-child {
  font-weight: 600;
  color: #1e7b44;
}

.schedule-row.closed td:first-child {
  color: #dc3545;
}

/* Contact (fond blanc avec dégradé subtil) */
#contact {
  padding: 100px 20px;
  background: #fafbfc;
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(30, 123, 68, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(45, 143, 87, 0.03) 0%, transparent 50%);
  z-index: 1;
}

#contact > * {
  position: relative;
  z-index: 2;
}

#contact-question {
  text-align: center;
  font-size: 1.8rem;
  color: #1e7b44;
  margin-bottom: 50px;
  font-weight: 600;
  background: linear-gradient(135deg, #1e7b44, #2d8f57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(30, 123, 68, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1e7b44, #2d8f57);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(30, 123, 68, 0.15);
  background: linear-gradient(135deg, rgba(30, 123, 68, 0.02), rgba(45, 143, 87, 0.02));
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-item i {
  font-size: 2rem;
  color: #1e7b44;
  margin-bottom: 15px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(30, 123, 68, 0.1), rgba(45, 143, 87, 0.1));
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  background: linear-gradient(135deg, #1e7b44, #2d8f57);
  color: white;
  transform: scale(1.1);
}

.contact-item strong {
  display: block;
  font-size: 1.2rem;
  color: #1e7b44;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item a {
  color: #495057;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.contact-item a:hover {
  color: #1e7b44;
  font-weight: 500;
}

.form-section {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0;
  border-radius: 0;
  box-shadow: none;
}

#form-title {
  text-align: center;
  font-size: 2rem;
  color: #1e7b44;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}

#form-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #1e7b44, #2d8f57);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(30, 123, 68, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #1e7b44, #2d8f57, #40a96b);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1e7b44;
  font-size: 1rem;
}

.form-group label i {
  margin-right: 8px;
}


.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e8f5e8;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e7b44;
  box-shadow: 0 0 0 3px rgba(30, 123, 68, 0.1);
}

.submit-btn {
  background: #1e7b44;
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 500;
}

.submit-btn:hover {
  background: #0f4c20;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 123, 68, 0.3);
}

.confirmation-message {
  display: none;
  text-align: center;
  font-size: 1.2rem;
  color: #28a745;
  margin-top: 30px;
  padding: 20px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 10px;
  border: 2px solid #28a745;
}

.confirmation-message i {
  margin-right: 10px;
  font-size: 1.4rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #1e7b44;
  color: white;
  margin-top: 60px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  color: white;
  font-size: 1.4rem;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #2d8f57;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .intro-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Désactivation complète des effets hover sur les appareils tactiles */
@media (hover: none) and (pointer: coarse) {
  .schedule-row:hover {
    background: white !important;
    transform: none !important;
    box-shadow: none !important;
  }
  
  .schedule-row:hover::before {
    background: transparent !important;
  }
  
  .schedule-row.closed:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(255, 193, 7, 0.05)) !important;
  }
}

/* Alternative plus agressive pour mobile */
@media (max-width: 768px) {
  .hero-section {
    padding: 120px 20px 80px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .logo-hero {
    max-width: 300px;
  }
  
  .header-logo {
    height: 40px;
  }
  
  header.scrolled .header-logo {
    height: 35px;
  }
  
  .intro-title {
    font-size: 2rem;
  }
  
  .header-container {
    padding: 0 15px;
  }
  
  nav {
    gap: 20px;
    font-size: 1rem;
    flex-wrap: wrap;
  }
  
  .nav-link {
    padding: 10px 16px;
    font-size: 1rem;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 30px 25px;
    margin: 0 20px;
  }
  
  .intro-feature {
    flex-direction: column;
    text-align: center;
  }
  
  /* Désactivation hover du tableau en gardant la structure */
  .schedule-row:hover {
    background: white !important;
    transform: none !important;
    box-shadow: none !important;
  }
  
  .schedule-row:hover::before {
    background: transparent !important;
  }
  
  .schedule-row.closed:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(255, 193, 7, 0.05)) !important;
  }
  
  /* Amélioration du tableau sur mobile */
  .schedule-container {
    padding: 20px;
    margin: 0 15px;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 8px 0;
  }
  
  header.scrolled {
    padding: 5px 0;
  }
  
  .header-container {
    padding: 0 10px;
  }
  
  nav {
    gap: 8px;
    font-size: 0.8rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: space-between;
    width: 100%;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 20px;
  }
  
  .nav-link i {
    margin-right: 4px;
    font-size: 0.7rem;
  }
  
  .hero-section {
    padding: 100px 15px 70px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .logo-hero {
    max-width: 250px;
  }
  
  .header-logo {
    height: 35px;
  }
  
  header.scrolled .header-logo {
    height: 30px;
  }
  
  section {
    padding: 60px 15px;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .intro-text {
    padding: 25px;
  }
  
  /* Optimisation complète du tableau pour mobile */
  .schedule-container {
    padding: 15px;
    margin: 0 10px;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
  
  .schedule-table th:first-child,
  .schedule-table td:first-child {
    font-size: 0.8rem;
  }
  
  /* Désactivation hover uniquement sur mobile */
  .schedule-row:hover {
    background: white !important;
    transform: none !important;
    box-shadow: none !important;
  }
  
  .schedule-row:hover::before {
    background: transparent !important;
  }
  
  .schedule-row.closed:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(255, 193, 7, 0.05)) !important;
  }
}

.service-personne-info {
  margin: 2rem 0 0 auto;
  padding: 1rem;
  text-align: center;
  background: none;
  border-radius: 0;
  border: none;
  max-width: 400px;
  margin-right: 1rem;
  padding-left: 3rem;
}

.service-personne-image {
  width: 180px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 1rem;
  box-shadow: none;
}

.service-personne-text {
  font-size: 0.9rem;
  color: #495057;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
