body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
  color: white;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0 0 15px 0;
  font-size: 2.5em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: block;
}

nav a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

nav a.active {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.service {
  margin-bottom: 40px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service h3 {
  color: #b71c1c;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 3px solid #b71c1c;
  padding-bottom: 10px;
  font-size: 1.5em;
}

.service p {
  line-height: 1.8;
  color: #555;
}

.menu-section {
  margin-bottom: 40px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.menu-section h3 {
  color: #b71c1c;
  border-bottom: 3px solid #b71c1c;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #ddd;
  padding: 12px 0;
  transition: all 0.2s ease;
}

.menu-list li:hover {
  background: #f9f9f9;
  padding-left: 10px;
}

.menu-list li span.price {
  font-weight: bold;
  color: #b71c1c;
  white-space: nowrap;
  margin-left: 15px;
}

main {
  padding: 40px;
  max-width: 1000px;
  margin: 30px auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

main h2 {
  color: #b71c1c;
  font-size: 2.2em;
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 3px solid #b71c1c;
  padding-bottom: 15px;
}

footer {
  background: linear-gradient(135deg, #424242 0%, #333 100%);
  color: #ddd;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
}

.hero {
  position: relative;
  text-align: center;
  margin: -40px -40px 40px -40px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.88);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-content h2 {
  color: #b71c1c;
  font-size: 2.8em;
  margin: 0 0 20px 0;
  border: none;
  padding: 0;
}

.hero-content p {
  font-size: 1.3em;
  color: #666;
  margin: 0;
}

.error-page {
  text-align: center;
  margin-top: 100px;
}

.error-page h1 {
  font-size: 5em;
}

/* Styles pour les articles de blog */
article {
  margin-bottom: 35px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-left: 5px solid #b71c1c;
  transition: all 0.3s ease;
}

article:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

article h3 {
  color: #b71c1c;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.6em;
}

article p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

article a {
  color: #b71c1c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

article a:hover {
  text-decoration: underline;
  color: #c62828;
}

/* Styles pour les sections de contenu */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  padding: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.feature-card h3 {
  color: #b71c1c;
  margin: 20px 0 15px 0;
  padding: 0 20px;
  font-size: 1.4em;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  padding: 0 30px 30px 30px;
  margin: 0;
}

.cta-section {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
  color: white;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 4px 16px rgba(183, 28, 28, 0.3);
}

.cta-section h3 {
  margin-top: 0;
  font-size: 2em;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: white;
  color: #b71c1c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  background: #f9f9f9;
}

/* Styles pour le formulaire de contact */
.contact-info, .contact-form, .appointment {
  margin-bottom: 35px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-info h3, .contact-form h3, .appointment h3 {
  color: #b71c1c;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5em;
  border-bottom: 3px solid #b71c1c;
  padding-bottom: 10px;
}

.contact-info h4 {
  color: #b71c1c;
  margin-top: 25px;
  margin-bottom: 10px;
}

.contact-info a {
  color: #b71c1c;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1em;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #b71c1c;
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.1);
}

.contact-form button {
  padding: 15px 30px;
  background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.3);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(183, 28, 28, 0.4);
}

/* Styles pour la page À propos */
.about-hero {
  position: relative;
  margin: -40px -40px 40px -40px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.about-hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  padding: 40px 30px 30px;
}

.about-hero-text .tagline {
  color: white;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.story-section, .values-section, .family-section, .location-section {
  margin-bottom: 50px;
}

.story-section h3, .values-section h3, .family-section h3, .location-section h3 {
  color: #b71c1c;
  font-size: 2em;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 3px solid #b71c1c;
  padding-bottom: 15px;
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.story-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.story-image {
  position: sticky;
  top: 20px;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: block;
}

.image-caption {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 10px;
  font-size: 0.9em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.value-item {
  padding: 25px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border-radius: 12px;
  border-left: 5px solid #b71c1c;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.value-item h4 {
  color: #b71c1c;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3em;
}

.value-item p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.family-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.family-content img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.family-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.location-section {
  text-align: center;
}

.location-section p {
  font-size: 1.1em;
  margin: 15px 0;
  color: #555;
}

.location-image {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }
  
  nav ul {
    gap: 10px;
  }
  
  nav a {
    padding: 6px 12px;
    font-size: 0.9em;
  }
  
  main {
    padding: 20px;
    margin: 15px;
  }
  
  .hero {
    margin: -20px -20px 30px -20px;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .hero-content {
    padding: 25px 20px;
  }
  
  .hero-content h2 {
    font-size: 1.8em;
  }
  
  .hero-content p {
    font-size: 1em;
  }
  
  .feature-image {
    height: 150px;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .about-hero {
    margin: -20px -20px 30px -20px;
  }
  
  .about-hero img {
    height: 250px;
  }
  
  .about-hero-text .tagline {
    font-size: 1.3em;
  }
  
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .story-image {
    position: static;
    order: -1;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .family-content {
    grid-template-columns: 1fr;
  }
  
  .story-text p, .family-text p {
    text-align: left;
  }
}
