/* Réseaux sociaux section */
.reseaux-sociaux-container {
  background-color: var(--main-bg-color);
  padding: 70px 20px 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 15px;
}

.reseaux-sociaux-content {
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
}

/* Titre avec bandeau rouge qui dépasse */
.reseaux-titre {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
}

.reseaux-titre h2 {
  background-color: #e74c3c;
  color: white;
  display: inline-block;
  padding: 12px 60px;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 10px;
}

/* Texte */
.reseaux-texte {
  margin-bottom: 40px;
  padding-top: 20px;
}

.reseaux-texte p {
  color: white;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

/* Icons container */
.reseaux-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
}

/* Individual social item */
.reseau-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.reseau-item:hover {
  transform: translateY(-5px);
}

/* Icon square */
.reseau-icon {
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.reseau-item:hover .reseau-icon {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.reseau-icon svg {
  width: 55px;
  height: 55px;
  color: var(--main-bg-color);
}

/* Label text */
.reseau-item span {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .reseaux-sociaux-container {
    padding: 60px 20px 40px 20px;
  }

  .reseaux-titre {
    top: -50px;
  }

  .reseaux-titre h2 {
    font-size: 20px;
    padding: 8px 30px;
  }

  .reseaux-texte {
    padding-top: 15px;
  }

  .reseaux-texte p {
    font-size: 16px;
  }

  .reseaux-icons {
    gap: 40px;
  }

  .reseau-icon {
    width: 70px;
    height: 70px;
  }

  .reseau-icon svg {
    width: 35px;
    height: 35px;
  }

  .reseau-item span {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .reseaux-sociaux-container {
    padding: 50px 15px 30px 15px;
  }

  .reseaux-titre {
    top: -40px;
  }

  .reseaux-titre h2 {
    font-size: 18px;
    padding: 6px 25px;
  }

  .reseaux-texte {
    padding-top: 10px;
  }

  .reseaux-texte p {
    font-size: 14px;
  }

  .reseaux-icons {
    gap: 30px;
  }

  .reseau-icon {
    width: 60px;
    height: 60px;
  }

  .reseau-icon svg {
    width: 30px;
    height: 30px;
  }

  .reseau-item span {
    font-size: 14px;
  }
}
