*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* BODY */

body{
    background:linear-gradient(-45deg,#ffd6e7,#ffc2d1,#ffb3c6,#ffc8dd);
    background-size:400% 400%;
    animation:bgWave 10s ease infinite;
    color:#444;
}

/* ANIMASI BACKGROUND */

@keyframes bgWave{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}

/* HEADER */

.top-header{
    background:linear-gradient(90deg,#ffb6c1,#ff8fab);

    padding:18px 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;
    gap:20px;
}

/* LOGO AREA */

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

/* LOGO */

.logo{
    width:65px;
    height:65px;

    border-radius:50%;
    overflow:hidden;

    background:white;

    flex-shrink:0;
}

/* FOTO LOGO */

.logo img{
    width:100%;
    height:100%;

    object-fit:contain;

    display:block;
}

/* TEXT HEADER */

.logo-text h1{
    color:white;

    font-size:42px;

    font-weight:700;

    text-shadow:
    0 0 10px rgba(255,255,255,0.8),
    0 0 20px rgba(255,105,180,0.8);

    animation:glow 2s infinite alternate;
}

.logo-text p{
    color:white;
    font-size:14px;
    margin-top:5px;
}

/* ANIMASI GLOW */

@keyframes glow{

    from{
        text-shadow:
        0 0 5px #fff;
    }

    to{
        text-shadow:
        0 0 10px #fff,
        0 0 20px #ff4f87,
        0 0 30px #ff85a2;
    }

}

/* SEARCH */

.search-box{
    display:flex;
    gap:10px;
}

.search-box input{
    width:230px;

    padding:13px 15px;

    border:none;
    outline:none;

    border-radius:12px;
}

.search-box button{
    padding:13px 20px;

    border:none;

    background:#ff4f87;

    color:white;

    border-radius:12px;

    cursor:pointer;

    transition:0.3s;
}

.search-box button:hover{

    transform:scale(1.05);

    box-shadow:0 0 15px rgba(255,105,180,0.6);
}

/* NAVBAR */

nav{
    background:white;

    padding:18px 5%;

    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

/* MENU */

.nav-links{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:35px;

    list-style:none;

    flex-wrap:wrap;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;

    color:#555;

    font-weight:500;

    transition:0.3s;
}

.nav-links a:hover{
    color:#ff4f87;
}

/* DROPDOWN */

.dropdown-menu{
    display:none;

    position:absolute;

    top:30px;
    left:0;

    background:white;

    min-width:190px;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,0.1);

    z-index:100;
}

.dropdown-menu a{
    display:block;
    padding:12px 15px;
}

.dropdown.active .dropdown-menu{
    display:block;
}

/* INFO */

.info-box{
    width:90%;

    margin:25px auto;

    display:flex;

    border-radius:15px;

    overflow:hidden;
}

.info-title{
    background:#ff4f87;

    color:white;

    padding:18px 25px;

    font-weight:600;
}

.info-text{
    flex:1;

    background:white;

    padding:18px 25px;
}

/* CONTENT */

.container{
    width:90%;

    margin:auto;

    background:white;

    padding:40px;

    border-radius:25px;

    margin-bottom:40px;

    animation:fadeUp 1s ease;
}

/* ANIMASI */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* LABEL */

.label{
    display:inline-block;

    background:#ffd6e0;

    color:#ff4f87;

    padding:8px 15px;

    border-radius:20px;

    font-size:13px;

    font-weight:600;

    margin-bottom:25px;
}

/* JUDUL */

.container h2{
    color:#ff4f87;

    font-size:55px;

    margin-bottom:20px;

    text-shadow:
    0 0 10px rgba(255,105,180,0.4);
}

/* DETAIL */

.detail{
    display:flex;

    gap:25px;

    flex-wrap:wrap;

    color:#777;

    border-bottom:1px solid #ffd6e0;

    padding-bottom:20px;

    margin-bottom:30px;
}

/* TEXT */

.content-text{
    line-height:2;
    color:#555;
}

/* CARD */

.card{
    margin-top:35px;

    border-radius:20px;

    overflow:hidden;

    transition:0.4s;

    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.card:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    box-shadow:0 10px 25px rgba(255,105,180,0.25);
}

.card-header{
    background:#ff8fab;

    color:white;

    padding:18px 25px;

    font-weight:600;
}

.card-body{
    background:#fff5f8;

    padding:25px;
}

/* FOOTER */

footer{
    background:#ff8fab;

    color:white;

    text-align:center;

    padding:20px;
}

/* WAVE */

.wave{
    line-height:0;
}

/* RESPONSIVE */

@media(max-width:768px){

    .top-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .container h2{
        font-size:38px;
    }

    .search-box{
        width:100%;
    }

    .search-box input{
        width:100%;
    }

}
/* ========================= */
/* STATISTIK FINAL */
/* ========================= */

.judul-statistik{
    font-size:38px !important;
    margin-bottom:20px;
}

.data-table{
    width:100%;
    border-collapse:collapse;
    margin-top:30px;
    background:white;
}

.data-table thead{
    background:#ff8fab;
    color:white;
}

.data-table th{
    padding:16px;
    border:1px solid #ffd6e0;
    text-align:center;
    font-size:15px;
}

.data-table td{
    padding:15px;
    border:1px solid #eee;
    text-align:center;
    font-size:15px;
}

.data-table tbody tr:nth-child(even){
    background:#fff7fa;
}

.data-table tbody tr:hover{
    background:#ffe5ec;
    transition:0.3s;
}

.total-row{
    background:#ffd6e0;
    font-weight:bold;
}

.update-text{
    margin-top:20px;
    color:red;
    font-size:15px;
}
/* ======================= */
/* FOOTER FINAL */
/* ======================= */

.footer-big{

    background:#3b4d61;

    padding:55px 7%;

    color:white;
}

/* GRID */

.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:60px;
}

/* ITEM */

.footer-item h3{

    font-size:24px;

    margin-bottom:20px;

    color:white;
}

.footer-item p{

    color:#f1f1f1;

    line-height:1.8;

    font-size:15px;
}

/* LOGO */

.footer-logo{

    display:flex;

    align-items:flex-start;

    gap:18px;
}

.footer-logo img{

    width:70px;

    height:70px;

    object-fit:contain;
}

/* LINKS */

.footer-links{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.footer-links a{

    text-decoration:none;

    color:#f1f1f1;

    transition:0.3s;
}

.footer-links a:hover{

    color:#ffb3c6;

    padding-left:5px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

}