/* public/css/cr.css */

/* Footer gelap */
.footer-dark {
  background-color: #ffffff; /* ganti dengan hex yang diinginkan */
}

/* Teks tetap putih */
.footer-dark.text-white {
  color: #fff;
}


/* Ikon sosial (tetap seperti sebelumnya) */
.social-link {
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}
.social-link:hover {
  background: #27ae60;  /* gradient‐green‐tosca utama */
  transform: translateY(-2px);
}

/* Gradient teks copyright */
.footer-dark .text-center {
  background: var(--gradient-green-tosca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-dark .container {
    text-align: center;
  }
  .footer-dark .social-links {
    justify-content: center;
  }
}

/* public/css/cr.css */

.social-link {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;

  /* warna ikon tosca */
  color: #1abc9c;
  background: transparent;

  /* border bundar */
  border: 2px solid rgba(255,255,255,0.7);

  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}

.social-link:hover,
.social-link:focus {
  background: #1abc9c;
  color: #fff;
  transform: translateY(-2px);

  /* border jadi putih saat hover */
  border-color: #fff;
}
