/* Structure globale */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: auto;
}

/* Cartes services */
.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.03);
}

/* Responsive pour petits écrans */
@media (max-width: 767px) {
  .navbar-brand img {
    height: 30px;
  }
}
.logo-animated {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-animated:hover {
  transform: scale(1.1) rotate(-2deg);
  opacity: 0.8;
}
