/* ======= GLOBAL RESET ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f8fc;
    color: #333;
}

/* ======= HERO SECTION ======= */
.hero-section {
    background-color: #f4f8fc;
    padding: 50px 20px;
}

.hero-section h4 {
    font-weight: 700;
}

.hero-section input {
    border-radius: 25px;
    padding: 10px 15px;
}

/* ======= INFOGRAFIS SLIDER ======= */
.infografis-section {
    padding: 20px 0;
}

.infografis-section .swiper {
    width: 100%;
    height: auto;
}

.infografis-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1px;
}

/* Hilangkan tombol panah untuk slider otomatis */
.infografis-section .swiper-button-next,
.infografis-section .swiper-button-prev {
    display: none !important;
}

/* ======= TOPIK DASHBOARD (GRID STYLE) ======= */
.topics-section {
    background: url('img/bg-topik.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 50px 0;
}

.topics-section h5 {
    background: none;
    color: #0F1C58; /* Warna khas Partai NasDem */
    text-align: center;
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.topics-section .card {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.topics-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}

.topics-section .card h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.topics-section .btn {
    border-radius: 20px;
    font-size: 14px;
    padding: 8px 15px;
}

/* ======= HIGHLIGHT SECTION ======= */
.highlight-section {
    background: url('/img/bg-topik.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 50px 0;
}

.highlight-section h5 {
    background: none;
    color: #0F1C58; /* Warna khas Partai NasDem */
    text-align: center;
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.highlight-section .card {
    background: url('../img/bg-topik.jpg') no-repeat center center;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.highlight-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}

.highlight-section .badge {
    font-size: 12px;
    padding: 5px 10px;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
    .infografis-section .swiper {
        height: 200px;
    }

    .infografis-section img {
        height: 200px;
    }
}


/* Container for consistent width */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.topics-section .overlay,
.highlight-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

.topics-section .container,
.highlight-section .container {
    position: relative;
    z-index: 1;
}
