.bg-card.h-full {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}

.card:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@media (hover: hover) and (min-width: 768px) {
  .navbar-nav .nav-link, 
  .navbar-nav .btn {
    transition: transform 0.3s ease;
  }

  .navbar-nav .nav-link:hover, 
  .navbar-nav .btn:hover {
    transform: scale(1.1);
  }
}


.socials.component {
  background-color: var(--cl-background-primary);
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
}

.socials.component .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 1.2px;
}

.socials.component .section-subtitle p {
  font-size: 1.15rem;
  color: #bbb;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.socials.component .list {
  gap: 2rem;
}

.socials.component .social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(46, 46, 46, 0.6); /* plus léger et intégré */
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: #ccc;
  border: 1px solid #444;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.15);
  font-weight: 600;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.socials.component .social:hover {
  background-color: rgba(38, 87, 255, 0.15); /* accent léger transparent */
  color: var(--cl-accent);
  border-color: var(--cl-accent);
  box-shadow: 0 4px 12px rgba(38, 87, 255, 0.3);
  transform: translateY(-2px);
}

.socials.component .social .left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.socials.component .social .left svg {
  fill: currentColor;
  width: 32px;
  height: 32px;
}

.socials.component .social .right svg {
  stroke: currentColor;
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  shape-rendering: crispEdges;
  vector-effect: non-scaling-stroke;
  stroke-width: 1.5;
}

.socials.component .social:hover .right svg {
  opacity: 1;
}

@media (max-width: 767px) {
  .socials.component .social {
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem 1rem;
  }

  .socials.component .social .right {
    align-self: flex-end;
  }
}