/* === Import Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@500;700&display=swap');

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings" !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* === Gradasi Biru ke Hijau untuk Header === */
.pkp_structure_head {
    background: linear-gradient(90deg, #007BFF 0%, #c80000 100%);
    padding-top: 10px;
    padding-bottom: 10px;
}

/* === Gradasi Hijau ke Biru untuk Footer === */
.pkp_structure_footer_wrapper {
    background: linear-gradient(90deg, #c80000 0%, #007BFF 100%);
    padding-top: 10px;
    padding-bottom: 10px;
}

/* === Penyesuaian Footer  === */
.pkp_footer_content {
    /* background: linear-gradient(90deg, #00C894 0%, #007BFF 100%); */
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* === Tombol dengan Border & Text Gradasi === */
ul.links li.view a,
ul.links li.current a {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #007BFF, #00C894);
    border-image-slice: 1;
    color: transparent;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 86, 210, 0.1);
    background-image: linear-gradient(90deg, #007BFF, #00C894);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === Hover: Latar belakang solid gradasi dan teks putih === */
ul.links li.view a:hover,
ul.links li.current a:hover {
    background: linear-gradient(90deg, #007BFF, #00C894);
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    box-shadow: 0 6px 15px rgba(0, 200, 148, 0.3);
    transform: scale(1.05);
}

/* === Animasi Muncul === */
ul.links li a {
    animation: fadeUp 0.5s ease-in-out;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}







