body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:black;
color:white;
line-height:1.6;
}

/* CONTAINER */

.container{
width:1150px;
max-width:95%;
margin:auto;
}

/* HEADER */

header{
background:black;
border-bottom:2px solid gold;
position:sticky;
top:0;
z-index:999;
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 0;
}

/* LOGO */

.logo-area{
display:flex;
align-items:center;
}

.logo-area img{
height:45px;
margin-right:10px;
}

.logo-text{
color:gold;
font-weight:bold;
font-size:16px;
}

.logo-text span{
color:white;
font-size:12px;
}

/* MENU */

.menu a{
color:white;
text-decoration:none;
margin-left:18px;
font-size:14px;
transition:0.3s;
padding:5px 0;
position:relative;
}

/* MENU HOVER */

.menu a:hover{
color:gold;
}

.menu a::after{
content:'';
position:absolute;
bottom:-5px;
left:0;
width:0;
height:2px;
background:gold;
transition:0.3s;
}

.menu a:hover::after{
width:100%;
}

/* MENU ACTIVE */

.menu a.active{
color:gold;
border-bottom:2px solid gold;
}

/* SLIDER */

.slider{
position:relative;
width:100%;
height:650px;
overflow:hidden;
background:black;

}



/* SLIDE */
.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;



/* ❌ MATIKAN TOTAL */
display:none;
}

/* ACTIVE */
.slide.active{
display:block;
z-index:2;
}

/* IMAGE */
.slide img{
width:100%;
height:100%;
object-fit:contain;
background:black;
}

/* SECTION */

.section{
text-align:center;
padding:50px 20px;
border-bottom:2px solid gold;
}

.section h2{
color:gold;
margin-top:10px;
}

.motto{
color:red;
font-weight:bold;
margin-top:10px;
}

.btn{
background:gold;
color:black;
padding:10px 22px;
text-decoration:none;
display:inline-block;
margin-top:15px;
font-weight:bold;
}

/* BERITA HOMEPAGE */

.empty{
color:gold;
margin-top:15px;
}

.berita-grid{
display:flex;
justify-content:center;
gap:20px;
margin-top:20px;
flex-wrap:wrap;
}

.berita-item{
width:220px;
background:#111;
padding:10px;
}

.berita-item img{
width:100%;
height:150px;
object-fit:cover;
}

/* GALERI */

.galeri{
display:flex;
justify-content:center;
gap:12px;
margin-top:20px;
flex-wrap:wrap;
}

.galeri img{
width:130px;
height:90px;
object-fit:cover;
background:#111;
}

/* STATISTIK */

.statistik{
padding:50px 0;
text-align:center;
}

.stat-grid{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-top:25px;
}

.stat-item{
background:#111;
padding:18px;
width:130px;
}

.stat-item h3{
color:gold;
margin:0;
font-size:28px;
}

/* TENTANG */

.tentang-top{
display:flex;
gap:30px;
margin-top:30px;
flex-wrap:wrap;
}

.tentang-image img{
width:350px;
}

.tentang-desc{
flex:1;
text-align:left;
}

.tentang-content{
display:flex;
gap:30px;
margin-top:30px;
flex-wrap:wrap;
}

.tentang-col{
flex:1;
min-width:300px;
}

.box{
background:#111;
padding:20px;
margin-bottom:20px;
}

.box h4{
color:gold;
margin-top:0;
}

.box p{
text-align:left;
}

.box ul{
text-align:left;
padding-left:20px;
}

.box li{
margin-bottom:6px;
}

/* ACCORDION */

.accordion{
background:#0f0f0f;
margin-bottom:15px;
border-radius:6px;
border:1px solid rgba(255,215,0,0.25);
}

.accordion-title{
padding:15px;
cursor:pointer;
color:gold;
font-weight:bold;
text-align:center;
border-bottom:1px solid rgba(255,215,0,0.2);
}

.accordion-content{
display:none;
padding:20px;
text-align:left;
}

.accordion-content ul{
padding-left:20px;
}

/* FOOTER */

footer{
background:black;
border-top:2px solid gold;
padding:22px 0;
font-size:14px;
}

.footer-flex{
display:flex;
align-items:center;
}

.footer-logo{
display:flex;
align-items:center;
gap:10px;
}

.footer-logo img{
height:40px;
}

.footer-left{
color:gold;
flex:1;
}

.footer-center{
text-align:center;
color:white;
flex:1;
}

.footer-right{
text-align:right;
color:gold;
flex:1;
}

/* ========================= */
/* HALAMAN BERITA PROFESIONAL */
/* ========================= */

.layout-berita{
display:grid;
grid-template-columns:3fr 1fr;
gap:40px;
}

.kolom-berita{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card-berita{
background:#111;
border:1px solid #d4af37;
overflow:hidden;
transition:0.3s;
}

.card-berita:hover{
transform:translateY(-5px);
}

.card-berita img{
width:100%;
height:180px;
object-fit:cover;
}

.isi-card{
padding:15px;
}

.isi-card h3{
font-size:18px;
margin-bottom:8px;
}

.card-berita h3 a{
color:white;
text-decoration:none;
transition:0.3s;
}

.card-berita h3 a:hover{
color:#d4af37;
}

.tanggal{
font-size:12px;
color:#d4af37;
}

.isi-card p{
font-size:14px;
color:#ccc;
}

.btn-baca{
display:inline-block;
margin-top:10px;
padding:6px 12px;
background:#d4af37;
color:black;
text-decoration:none;
font-weight:bold;
}

/* SIDEBAR */

.sidebar .widget{
background:#111;
padding:20px;
margin-bottom:25px;
border:1px solid #d4af37;
}

.sidebar h3{
color:#d4af37;
margin-bottom:15px;
}

.sidebar-berita{
display:flex;
gap:10px;
margin-bottom:12px;
text-decoration:none;
color:white;
}

.sidebar-berita img{
width:70px;
height:50px;
object-fit:cover;
}

/* SEARCH */

.sidebar input{
width:100%;
padding:8px;
margin-bottom:10px;
border:none;
background:#222;
color:white;
}

.sidebar button{
width:100%;
padding:8px;
background:#d4af37;
border:none;
font-weight:bold;
cursor:pointer;
}

/* PAGINATION */

.pagination{
margin-top:40px;
text-align:center;
grid-column:1/2;
}

.pagination a{
display:inline-block;
padding:8px 14px;
margin:3px;
background:#111;
color:white;
border:1px solid #d4af37;
text-decoration:none;
transition:0.3s;
}

.pagination a:hover{
background:#d4af37;
color:black;
}

/* ========================= */
/* BREAKING NEWS */
/* ========================= */

.breaking-news{
background:#111;
border-bottom:2px solid gold;
padding:8px 0;
}

.breaking-label{
background:red;
color:white;
padding:4px 10px;
font-weight:bold;
margin-right:10px;
}

.breaking-news a{
color:white;
text-decoration:none;
margin-right:20px;
}

.breaking-news a:hover{
color:gold;
}


/* ========================= */
/* HEADLINE BERITA */
/* ========================= */

.headline-news{
display:grid;
grid-template-columns:1.5fr 1fr;
gap:30px;
margin:40px 0;
align-items:center;
}

.headline-news img{
width:100%;
height:350px;
object-fit:cover;
border:1px solid gold;
}

.headline-text h2{
margin-top:0;
}

.headline-text h2 a{
color:white;
text-decoration:none;
}

.headline-text h2 a:hover{
color:gold;
}

.headline-text p{
color:#ccc;
line-height:1.7;
}


/* ========================= */
/* BERITA HOMEPAGE IMPROVED */
/* ========================= */

.berita-item h4{
margin:10px 0 0 0;
font-size:14px;
}

.berita-item a{
text-decoration:none;
color:white;
}

.berita-item a:hover{
color:gold;
}

.berita-item{
transition:0.3s;
}

.berita-item:hover{
transform:translateY(-4px);
}

/* ===================== */
/* BERITA HOMEPAGE MODERN */
/* ===================== */

.berita-home{
margin-top:30px;
}

.berita-utama{
margin-bottom:25px;
}

.berita-utama img{
width:100%;
height:320px;
object-fit:cover;
border:1px solid gold;
}

.berita-utama h3{
margin-top:10px;
font-size:22px;
}

.berita-utama a{
text-decoration:none;
color:white;
}

.berita-utama a:hover{
color:gold;
}

.berita-kecil{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.item-kecil{
background:#111;
padding:10px;
}

.item-kecil img{
width:100%;
height:140px;
object-fit:cover;
}

.item-kecil h4{
margin-top:8px;
font-size:14px;
}

.item-kecil a{
text-decoration:none;
color:white;
}

.item-kecil a:hover{
color:gold;
}

/* HALAMAN GALERI */

.judul-halaman{
text-align:center;
font-size:30px;
margin:40px 0;
color:#d4af37;
font-weight:bold;
}

/* GRID GALERI */

.galeri-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
padding:20px;
}

/* ITEM */

.galeri-item{
background:#111;
border-radius:10px;
overflow:hidden;
transition:0.3s;
cursor:pointer;
}

.galeri-item:hover{
transform:scale(1.05);
box-shadow:0 0 15px #d4af37;
}

.galeri-item img{
width:100%;
height:220px;
object-fit:cover;
}

/* JUDUL */

.galeri-title{
padding:12px;
text-align:center;
color:white;
font-size:16px;
}

/* MODAL */

.modal{
display:none;
position:fixed;
z-index:999;
padding-top:80px;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
}

.modal-content{
display:block;
margin:auto;
max-width:80%;
max-height:80%;
}

.close{
position:absolute;
top:30px;
right:50px;
color:white;
font-size:40px;
cursor:pointer;
}


/* =============================== */
/* HALAMAN CEK ANGGOTA BPPKB */
/* =============================== */

.container{
width:95%;
margin:auto;
}

/* JUDUL */

.judul-halaman{
text-align:center;
margin:30px 0;
color:#ffd700;
font-size:28px;
}

/* SEARCH BOX */

.search-box{
display:flex;
justify-content:center;
gap:10px;
margin-bottom:25px;
}

.search-box input{
padding:10px;
width:300px;
border:none;
background:#222;
color:white;
}

.search-box button{
padding:10px 18px;
background:#ffd700;
border:none;
font-weight:bold;
cursor:pointer;
}

.search-box button:hover{
background:#e6c200;
}

/* WRAPPER TABLE */

.table-wrapper{
overflow-x:auto;
}

/* TABEL ANGGOTA */

.anggota-table{
width:100%;
border-collapse:collapse;
background:#111;
font-size:14px;
}

.anggota-table th{
background:#000;
color:#ffd700;
padding:12px;
border:1px solid #444;
}

.anggota-table td{
padding:10px;
border:1px solid #444;
color:white;
text-align:center;
}

.anggota-table tr:hover{
background:#1c1c1c;
}

/* FOTO */

.anggota-table img{
width:50px;
height:50px;
border-radius:50%;
object-fit:cover;
}

/* BUTTON DETAIL */

.btn-detail{
background:#ffd700;
color:black;
padding:6px 12px;
text-decoration:none;
border-radius:4px;
font-weight:bold;
}

.btn-detail:hover{
background:#e6c200;
}

/* PAGINATION */

.pagination{
margin-top:30px;
text-align:center;
}

.pagination a{
display:inline-block;
padding:8px 14px;
margin:4px;
background:#111;
color:white;
border:1px solid #d4af37;
text-decoration:none;
transition:0.3s;
}

.pagination a:hover{
background:#d4af37;
color:black;
}

.pagination a.active{
background:#d4af37;
color:black;
font-weight:bold;
}

/* =============================== */
/* RESPONSIVE MOBILE */
/* =============================== */

@media(max-width:768px){

.search-box{
flex-direction:column;
align-items:center;
}

.search-box input{
width:100%;
max-width:300px;
}

.anggota-table{
font-size:12px;
}

.anggota-table th,
.anggota-table td{
padding:8px;
}

}


/* HALAMAN DETAIL ANGGOTA */

.detail-card{
background:#f2f2f2;
padding:40px;
margin:40px auto;
max-width:900px;
}

.detail-flex{
display:flex;
gap:40px;
flex-wrap:wrap;
}

.detail-foto img{
width:280px;
height:320px;
object-fit:cover;
}

.detail-info{
flex:1;
color:#333;
}

.detail-info h2{
margin-top:0;
margin-bottom:20px;
}

.detail-row{
margin-bottom:15px;
border-bottom:1px solid #ccc;
padding-bottom:8px;
}

.detail-row span{
font-weight:bold;
display:block;
margin-bottom:4px;
}

.status{
padding:4px 10px;
border-radius:6px;
font-size:12px;
color:white;
}

.status.aktif{
background:blue;
}

.status.nonaktif{
background:red;
}

.btn-kembali{
display:inline-block;
margin-top:20px;
background:#d32f2f;
color:white;
padding:10px 18px;
text-decoration:none;
border-radius:4px;
}


/* HALAMAN DOWNLOAD */

.download-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:30px;
margin-top:30px;
}

.download-item{
background:#111;
border:1px solid #d4af37;
padding:20px;
}

.download-item h3{
color:#ffd700;
margin-bottom:15px;
}

.pdf-preview{
border:1px solid #444;
margin-bottom:15px;
}

.btn-download{
display:inline-block;
background:#ffd700;
color:black;
padding:10px 18px;
text-decoration:none;
font-weight:bold;
}

.btn-download:hover{
background:#e6c200;
}


/* HALAMAN KONTAK */

.kontak-grid{
display:grid;
grid-template-columns:1.5fr 1fr;
gap:40px;
margin-top:30px;
}

.kontak-info{
background:#111;
padding:20px;
border:1px solid #d4af37;
}

.kontak-info h3{
color:#ffd700;
margin-top:0;
}

.kontak-info p{
line-height:1.7;
}

.judul-form{
text-align:center;
margin-top:40px;
color:#ffd700;
}

/* FORM */

.form-kontak{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:12px;
margin-top:20px;
}

.form-kontak input,
.form-kontak textarea{
padding:10px;
background:#222;
border:none;
color:white;
}

.form-kontak textarea{
height:120px;
resize:none;
}

.form-kontak button{
background:#ffd700;
color:black;
padding:12px;
border:none;
font-weight:bold;
cursor:pointer;
}

.form-kontak button:hover{
background:#e6c200;
}

/* RESPONSIVE */

@media(max-width:768px){

.kontak-grid{
grid-template-columns:1fr;
}

}



/* HALAMAN KONTAK PROFESIONAL */

.kontak-map{
margin-bottom:40px;
border:2px solid #d4af37;
}

.kontak-grid{
display:grid;
grid-template-columns:1fr 1.3fr;
gap:40px;
margin-top:20px;
}

/* INFO KONTAK */

.kontak-info{
background:#111;
padding:25px;
border:1px solid #d4af37;
}

.kontak-info h3{
color:#ffd700;
margin-top:0;
}

.kontak-info p{
line-height:1.7;
}

.btn-wa{
display:inline-flex;
align-items:center;
gap:8px;
margin-top:15px;
background:#25D366;
color:white;
padding:10px 18px;
text-decoration:none;
font-weight:bold;
border-radius:4px;
}

.btn-wa:hover{
background:#1ebe5b;
}



/* ========================= */
/* KONTAK FORM */
/* ========================= */

.kontak-form{
background:#111;
padding:25px;
border:1px solid #d4af37;
}

.kontak-form h3{
color:#ffd700;
margin-bottom:20px;
}

.form-kontak{
display:flex;
flex-direction:column;
gap:15px;
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.form-kontak input,
.form-kontak textarea{
width:100%;
padding:12px;
background:#000;
border:1px solid #d4af37;
color:white;
font-size:14px;
}

.form-kontak textarea{
height:140px;
resize:none;
}

.form-kontak input:focus,
.form-kontak textarea:focus{
outline:none;
border-color:#ffd700;
}

.form-kontak button{
background:#ffd700;
color:black;
padding:12px;
border:none;
font-weight:bold;
cursor:pointer;
}

.form-kontak button:hover{
background:#e6c200;
}

/* ========================= */
/* WHATSAPP BUTTON */
/* ========================= */

.btn-wa{
display:inline-flex;
align-items:center;
gap:8px;
margin-top:15px;
background:#25D366;
color:white;
padding:10px 16px;
text-decoration:none;
font-weight:bold;
border-radius:4px;
}

.btn-wa:hover{
background:#1ebe5b;
}

.wa-icon{
font-size:18px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:768px){

.form-row{
grid-template-columns:1fr;
}

}

/* HALAMAN LOGIN */
.login-page{
display:flex;
justify-content:center;
align-items:center;
padding:80px 20px;
}

.login-box{
width:350px;
background:#fff;
padding:30px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
text-align:center;
}

.login-box h2{
margin-bottom:20px;
color:#333;
}

.login-box input{
width:100%;
padding:10px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:5px;
}

.login-box button{
width:100%;
padding:10px;
background:#d4af37;
color:#fff;
border:none;
border-radius:5px;
cursor:pointer;
}

.login-box button:hover{
background:#b8962e;
}

.error{
background:red;
color:white;
padding:10px;
margin-bottom:10px;
border-radius:5px;
}
/* ========================= */
/* DETAIL BERITA */
/* ========================= */

.detail-berita{
width:85%;
margin:40px auto;
color:white;
}

.detail-berita img{
    all: unset;
    display:block;
    width:100%;
    max-width:900px;
    height:auto !important;
    margin:20px auto;
}

.detail-berita h1{
text-align:center;
margin-bottom:10px;
}

.detail-meta{
text-align:center;
color:gold;
margin-bottom:20px;
}

.detail-isi{
line-height:1.8;
font-size:16px;
text-align:justify;
}







