body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
  background: #fff8fa;
}

/* Style du header */
header {
  background: #f5c6e0;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
  border-bottom: 2px solid #a84e7c;
}

.logo {
  width: 120px;
  margin-bottom: 0.5rem;
}

header h1 {
  margin: 0.5rem 0 1rem 0;
  font-size: 1.7rem;
  color: #6d357a;
  font-family: 'Segoe Script', 'Arial', cursive;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 2rem;
  justify-content: center;
}

nav li {
  display: inline;
}

nav a {
  text-decoration: none;
  color: #6d357a;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.3em 0.8em;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover,
nav a:focus {
  background: #a84e7c;
  color: #fff;
}

h1 {
  margin: 0;
  font-size: 1.7rem;
  color: #6d357a;
}

.hero {
  background: #fff0f6;
  text-align: center;
  padding: 2rem 1rem;
}

.hero h2 {
  font-size: 2rem;
  color: #a84e7c;
}

.btn {
  display: inline-block;
  background: #a84e7c;
  color: #fff;
  padding: 0.7em 1.5em;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: background 0.2s;
}

.btn:hover {
  background: #6d357a;
}

section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

.grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: linear-gradient(135deg, #fff8fa 60%, #f5c6e0 100%);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(168, 78, 124, 0.12), 0 1.5px 6px rgba(109, 53, 122, 0.08);
  padding: 1.5rem 1rem;
  width: 270px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1.5px solid #f5c6e0;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(168, 78, 124, 0.18), 0 2px 8px rgba(109, 53, 122, 0.12);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

#tarifs {
  background: linear-gradient(120deg, #f5c6e0 70%, #fff8fa 100%);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(168, 78, 124, 0.10);
  padding: 2rem 1.5rem;
}

.tarif-list h3 {
  color: #a84e7c;
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.tarif-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.tarif-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7em 1em;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.07rem;
  background: rgba(255, 240, 246, 0.5);
  border-radius: 8px;
  margin-bottom: 0.5em;
  transition: background 0.2s;
}

.tarif-list li:last-child {
  border-bottom: none;
}

.tarif-list li:hover {
  background: #f5c6e0;
}

.tarif-list .price {
  color: #6d357a;
  font-weight: bold;
  font-size: 1.08em;
  margin-left: 1.5em;
}

#about {
  background: #fff0f6;
  border-radius: 10px;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 400px;
  margin: 1rem auto;
}

#contact input, #contact textarea {
  padding: 0.5em;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#contact button {
  background: #a84e7c;
  color: #fff;
  border: none;
  padding: 0.7em;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

#contact button:hover {
  background: #6d357a;
}

.map {
  margin-top: 2rem;
}

footer {
  background: #f5c6e0;
  text-align: center;
  padding: 1rem;
  color: #6d357a;
  font-size: 1rem;
  margin-top: 2rem;
}