/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ========================================================= */
/* Bootstrap Reset */
/* ========================================================= */
.navbar-brand img {
    height: 50px;
}

/* Button */
.btn-primary {
    background-color: #8d826c;
    border-color: #8d826c;
    color: #fff;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(141, 130, 108, 0.3);
}

.btn-primary:hover {
    background-color: #7b705c;
    border-color: #7b705c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(141, 130, 108, 0.4);
}

.btn-primary:focus,
.btn-primary:focus-visible {
    background-color: #8d826c;
    border-color: #8d826c;
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(141, 130, 108, 0.25);
}

.btn-primary:active {
    background-color: #6e6453 !important;
    border-color: #6e6453 !important;
    transform: scale(0.96);
    box-shadow: 0 2px 5px rgba(141, 130, 108, 0.3);
}

.btn-primary:disabled {
    background-color: #b8ae9b;
    border-color: #b8ae9b;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

.text-light {
    color: #ffffff !important;
}

.bg-primary {
    background-color: #8d826c !important;
}
/* end Bootstrap Reset */
/* ========================================================= */

/* ========================================================= */
/* Style for general elements */
/* ========================================================= */
* {
    font-family: "Poppins", sans-serif;
}
/* end Style for general elements */
/* ========================================================= */

/* ========================================================= */
/* Style for Body element */
/* ========================================================= */
body {
    color: #373737;
    background-color: #f8fafa;
}
/* end Style for Body element */
/* ========================================================= */

/* ========================================================= */
/* Style for Home Page */
/* ========================================================= */
.homepage-hero {
    padding: 100px 0;
    background-image: url("/assets/images/hero-image.png");
    background-position: center;
}
.homepage-hero h1 {
    font-weight: 800;
    font-size: 3.5rem;
}
.homepage-hero h3 {
    font-weight: 300;
    margin: 20px 0;
    padding: 0;
}
.homepage-banner {
    padding: 30px 0;
    background-color: #ffffff;
}
.homepage-banner img {
    width: 100%;
    border-radius: 10px;
}
.homepage-tentang {
    padding: 50px 0;
    background-color: #f8fafa;
}
.homepage-tentang h2 {
    text-align: center;
    margin-bottom: 50px;
}
.homepage-tentang img {
    width: 60%;
}
.homepage-tentang p {
    text-align: justify;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 30px;
}
.homepage-bidangkerja {
    background-color: #ffffff;
    padding: 50px 0;
}
.homepage-bidangkerja h2 {
    text-align: center;
    margin-bottom: 50px;
}
.homepage-bidangkerja .bidang-kerja-box {
    width: 100%;
    margin-bottom: 30px;
}
.homepage-bidangkerja .bidang-kerja-box img {
    width: 100%;
}
.homepage-bidangkerja .bidang-kerja-box h4 {
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
    margin: 10px 0;
}
.homepage-bidangkerja .bidang-kerja-box p {
    font-size: 1rem;
    text-align: justify;
    font-weight: 300;
    line-height: 25px;
}
.homepage-bidangkerja .bidang-kerja-box .bidang-kerja-box-description {
    padding: 20px;
}
.homepage-artikel-berita {
    padding: 20px 0;
    background-color: #f8fafa;
}
.homepage-artikel-berita h5 {
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
    background-color: #7b705c;
    color: #fff;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
}
/* end Style for Home Page */
/* ========================================================= */

/* ========================================================= */
/* Style for Artikel Page */
/* ========================================================= */
.box-thumbnail-artikel img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
/* end Style for Home Page */
/* ========================================================= */

/* ========================================================= */
/* Style for Footer Section */
/* ========================================================= */
.partner-section {
    padding: 50px 0;
    background-color: #ffffff;
}
.partner-section h2 {
    text-align: center;
    margin-bottom: 50px;
}
.partner-section .partner-list {
    text-align: center;
}
.partner-section .partner-list img {
    height: 100px;
    margin: 0 30px;
    margin-bottom: 20px;
}
footer {
    background-color: #6e6453;
    color: #ffffff;
    padding: 50px 0;
}
footer h2 {
    text-align: center;
    margin-bottom: 50px;
}
footer p {
    font-weight: 300;
}
.copyright-section {
    padding: 20px 0;
}
.copyright-section p {
    margin: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
}
/* end Style for Footer Section */
/* ========================================================= */

/* ========================================================= */
/* Style for Mobile Responsive */
/* ========================================================= */
@media (max-width: 991px) {
    .homepage-hero {
        padding: 50px 0;
    }
    .homepage-hero h1 {
        font-weight: 700;
        font-size: 2.5rem;
    }
    .homepage-hero h3 {
        font-size: 1rem;
    }
    .homepage-banner {
        padding: 10px 0;
    }
    .homepage-banner img {
        border-radius: 0;
    }
    .homepage-tentang img {
        width: 50%;
        margin-bottom: 20px;
    }
    .homepage-tentang p {
        font-size: 1rem;
        line-height: 25px;
    }
}
/* end Style for Mobile Responsive */
/* ========================================================= */
