/*Biar full wallpaper di artikel*/
.full {
    height: 100%;
    margin: 0;
    padding: 0;
}

.a {
   text-decoration: none;
}

/*Index.html*/
a {
    text-decoration: none;
}

a, a:hover {
    text-decoration: none;
}

body {
    background: #f8f9fa;
}

.post .card {
    transition: 0.3s;
}

.post .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.credit-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000; /* Hitam matching navbar */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    border-top: 1px solid #222; /* Tampilan rapi */
    z-index: 9999;
}

.credit-footer {
    background-color: #111;
    border-top: 1px solid #1a1a1a;
}

body {
    padding-bottom: 80px; /* Tinggi footer + sedikit ruang */
}

/*Kotak copyright atau sosial media*/
.social-footer a .social-icon {
    width: 22px;
    height: 22px;
    margin: 0 6px;
    opacity: 0.85;
    transition: 0.2s ease-in-out;
}

.social-footer a .social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-footer a .social-icon {
    border-radius: 50%;
}

/* Container pagination */
#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0 60px;
}

/* Tombol angka dan prev/next */
.pagination-btn {
    padding: 8px 8px;
    background: #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s;
    user-select: none;
    border: none;
}

/* Hover */
.pagination-btn:hover:not(.active):not(.disabled) {
    background: #d8dce0;
}

/* Active page */
.pagination-btn.active {
    background: #0d6efd;
    color: white;
}

/* Disabled prev/next */
.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Ellipsis */
.page-indicator {
    padding: 4px 8px;
    font-size: 18px;
    color: #666;
}

/* ANIMASI HALAMAN */
.post {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.35s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header dengan wallpaper di index.html*/
header {
    background-image: url('https://i.pinimg.com/originals/7a/9f/61/7a9f61bd2e0e13caf4e7175de04d389f.gif'); /* Ganti dengan wallpaper yang diinginkan */
    background-size: cover;      /* Menutupi seluruh header */
    background-position: center; /* Posisi di tengah */
    background-repeat: no-repeat;
    color: white;                /* Agar teks tetap terlihat */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7); /* Biar teks lebih terbaca */
}

/* Optional: header lebih tinggi */
header {
    padding: 100px 0;            /* Tinggi header */
}

/* Wallpaper full layar di artikel */
#content-artikel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url("https://i.pinimg.com/736x/ca/93/43/ca93438cbf457ed764a0e89c29bb883f.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 40px 0;
}

/* Overlay agar teks tetap terbaca */
#content-artikel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* ubah tingkat gelap terang */
    z-index: 1;
}

/* isi artikel di atas overlay */
.post-content {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
