/* HEADER */
.header {
  padding: 24px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

.logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd36a, #8ad7ff);
}


/* BUTTONS */
.btn-primary,
.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* CARDS */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 20px;
}

.card {
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* Hover désactivé — le grossissement de l'image remplace la bordure */
/* .card:hover {
  border: 2px solid rgba(0, 0, 0, 0.08);
} */

.card-link,
.card-title-link {
  text-decoration: none;
  color: inherit;
}

.card-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.15));
  transition: transform 0.2s ease;
}

/* Scale au lieu de width/height pour ne pas déplacer les cartes voisines */
.card:has(.card-link:hover) .card-image,
.card:has(.card-title-link:hover) .card-image {
  transform: scale(1.05);
}

.card-title-link h3 {
  font-size: 18px;
  font-weight: 500;
}

/* FOOTER */
.footer {
  background: var(--color-white);
  height: 74px;
  display: flex;
  align-items: center;
}

.footer p {
  font-size: 14px;
  color: var(--color-muted);
}

.copyright {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #888;
}
