/*
	Theme Name:   	Lokerpro Child
	Theme URI:    	https://www.pojoksoft.com/
	Description:  	Lokerpro Child Theme
	Author: 		Pojoksoft.com
	Author URI: 	https://www.pojoksoft.com/
	Version: 		1.0.0
	License: 		GNU General Public License v2 or later
	License URI: 	http://www.gnu.org/licenses/gpl-2.0.html
	Text Domain: 	lokerpro
	Template:     	lokerpro
*/

@import url("../lokerpro/style.css");

/* =Theme customization starts here
-------------------------------------------------------------- */

/* Styling untuk konten sosial media */
#social-content {
    margin-top: 10px;
}

/* Styling untuk bagian sosial media */
.social-media-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

/* Styling untuk tiap link sosial media */
.social-icon {
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #112d7a;
    color: white;
    text-align: center;
    font-size: 24px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Efek hover untuk ikon */
.social-icon:hover {
    background-color: #e50d78; /* Warna berubah saat hover (ubah sesuai dengan warna sosial media) */
    transform: scale(1.1);      /* Memperbesar ikon saat hover */
    color: white;
}

/* Warna spesifik untuk tiap ikon */
.social-icon.telegram:hover {
    background-color: #e50d78;
    color: white;
}

.social-icon.instagram:hover {
    background-color: #e50d78;
    color: white;
}

.social-icon.tiktok:hover {
    background-color: #e50d78;
    color: white;
}

.social-icon.facebook:hover {
    background-color: #e50d78;
    color: white;
}

/* Ukuran font untuk ikon */
.social-icon i {
    font-size: 24px;
}

/* Styling untuk garis pemisah (hr) */
#social-content hr {
    border: 1px solid #ddd;
    width: 50%;
    margin: 10px auto;
}

#animated-text h3 {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    color: transparent; /* Teks tidak memiliki warna langsung */
    background-image: linear-gradient(90deg, #112d7a, #e50d78, #112d7a);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: colorScroll 5s linear infinite;
  }

  @keyframes colorScroll {
    0% {
      background-position: 0%;
    }
    100% {
      background-position: 100%;
    }
  }


.kbd-sticky {
    background: #e50d78;
    position: relative;
    left: 0;
    top: 0;
    border-radius: 6px;
    color: #ffffff;
}