/* --- Animations et carrousel accueil --- */
.realisation {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 40px 0 0 0;
}
.realisation > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 32px 28px 28px 28px;
  max-width: 420px;
  min-width: 320px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.realisation > div:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  transform: translateY(-6px) scale(1.03);
}
.cta-btn {
  background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(124,58,237,0.10);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 100%);
  transform: skewX(-20deg);
  transition: left 0.4s;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #a78bfa 0%, #7c3aed 100%);
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(124,58,237,0.18);
}
.cta-btn:hover::before {
  left: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .realisation {
    gap: 24px;
  }
  .realisation > div {
    max-width: 95vw;
    min-width: 220px;
    padding: 22px 10px 18px 10px;
  }
}

.section-title {
  width: 100%;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 36px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(124,58,237,0.08);
  animation: fadeInDown 1s;
}

.realisation img {
  width: 100%;
  max-width: 370px;
  height: 240px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(124,58,237,0.10);
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), box-shadow 0.3s;
}
.realisation img:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 12px 40px rgba(124,58,237,0.18);
}

.realisation > div > div,
.realisation > div > .osmoz-text,
.realisation > div > .mariage-text {
  font-size: 1.08rem;
  color: #444;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 0 8px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.realisation > div > div strong {
  color: #7c3aed;
  font-weight: 700;
}