

#textLandingPage{
    z-index: 3;
    position: relative;
}

#imgLandingContainer{
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
#imgLandingGendung{
    z-index: 1;
    /* height: 300px; */
    width: 75%;
    position: absolute;
    right: 1rem;
    bottom: 0;
}
#imgLanding{
    z-index: 2;
    /* height: 300px; */
    width: 70%;
    position: absolute;
    right: 0;
    bottom: -80px;
}

.rps-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(0) rotate(0deg) scale(1);
}

.rps-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-left-width: 8px;
    transform: translateY(-8px) rotate(1deg) scale(1.05);
}

.rps-card .card-header {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.rps-card .badge {
    transition: all 0.3s ease;
}

.rps-card:hover .badge.badge-prodi {
    transform: rotate(8deg) scale(1.1);
}

.rps-card:hover span.badge {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rps-card .card-body {
    position: relative;
    z-index: 2;
}

.rps-card h5 {
    transition: all 0.3s ease;
}

.rps-card:hover h5 {
    transform: scale(1.05);
    letter-spacing: 0.025em;
}

.rps-card .text-muted {
    transition: all 0.3s ease;
}

.rps-card .fa-regular {
    transition: all 0.3s ease;
}

.rps-card:hover .fa-clock {
    animation: rotate 2s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Efek untuk SKS badge */
.sks-badge {
    transition: all 0.1s ease;
}

.rps-card:hover .sks-badge {
    transform: rotate(3deg);
}

.blurred {
    filter: blur(2px);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.blurred::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

#langItkDropdown{
    padding: 8px;
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 1px 1px 10px -2px;
}
#langItkDropdown a{
    color: black;
    text-decoration: none;
}

@media (max-width: 768px) {

    #textLandingPage{
        text-align: center;
    }
    #imgContainer{
        position: relative;
        width: 100%;
        height: 150px;
    }
    #imgLandingContainer{
        display: flex;
        height: 100%;
        flex-direction: column;
        /* margin-bottom: 3rem; */
    }

    #imgLandingGendung{
        width: 100%;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    #imgLanding{
        z-index: 2;
        /* height: 300px; */
        width: 80%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }
    
    .scale-bar-label {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .scale-bar-label small {
        font-size: 9px;
    }

    .rps-table {
        position: relative;
    }

    /* Kolom frozen dengan z-index lebih rendah dari header */
    .rps-table th:nth-child(8),
    .rps-table td:nth-child(8) {
        position: sticky;
        background-color: white;
        z-index: 15;
        border-right: 2px solid #dee2e6;
    }
    
    /* Header kolom frozen harus memiliki z-index tertinggi */
    .rps-table thead th#action {
        z-index: 25;
        background-color: #f8f9fa;
        font-weight: bold;
    }
    
    /* Kolom Minggu */
    .rps-table th:nth-child(8),
    .rps-table td:nth-child(8) {
        right: 0;
        min-width: 80px;
    }
}
