/* Custom MTs Theme Override - Mengubah color scheme dari orange ke teal */

/* Mengubah tombol dari orange ke teal */
.btn {
  background-color: #34A8A3; /* Dari #f59166 ke teal */
}

.btn:hover {
  background-color: #2A8A86; /* Dari #eb8153 ke teal gelap */
}

/* Mengubah background gradient dari orange ke teal */
.container:before {
  background-image: linear-gradient(-45deg, #34A8A3 0%, #45BDB5 100%); /* Dari orange ke teal */
}

/* Mengubah social icon hover dari orange ke teal */
.social-icon:hover {
  color: #34A8A3; /* Dari #eb8153 ke teal */
  border-color: #34A8A3; /* Dari #eb8153 ke teal */
}

/* Responsive: Memastikan perubahan warna juga berlaku di mobile */
@media (max-width: 870px) {
  .container:before {
    background-image: linear-gradient(-45deg, #34A8A3 0%, #45BDB5 100%);
  }
}

@media (max-width: 570px) {
  .container:before {
    background-image: linear-gradient(-45deg, #34A8A3 0%, #45BDB5 100%);
  }
}