* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* font-size: 70%; */
}
body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    color: black;
    background-color: #EEEEEE;

}
/* ----------------------------------------Batas Suci------------------------------------------- */
/* NAVBAR START */
header {
    display: flex;
    top: 0;
    width: 100%;
    box-shadow: 0 10px 300px 1px rgba(0, 0, 0, 0.25);
    position: fixed;
    justify-content: space-around;
    z-index: 9999;
}
.img-icon {
    width: 90px;
    justify-content: center;
    align-items: center;
}
.nav {
    display: flex;
}
.nav-logo{
    text-decoration: none;
    padding-right: 200px;
    color: black;
    font-weight: 800;
    font-size: 2.5rem;
}
.nav a {
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: black;
    font-weight: 500;
    margin-top: 1rem;
    margin-left: 4rem;
}
/* NAVBAR END */
/* ----------------------------------------Batas Suci------------------------------------------- */
/* MAIN START */
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.home-image {
    width: 40%;
    margin-right: 200px;
    font-size: 50%;
}
.home-content {
    width: 60%;
}
.home-definition {
    margin-bottom: 1%;
    font-size: 2.7rem;
}
.article-desc {
    line-height: 2;
    padding-right: 50px;
}

.js-products {
    padding-top: 100px;
    margin-bottom: 250px;
    height: 100vh;
    background-color: #EEEEEE;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.product-card {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin: 8px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    background-color: white;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.product-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.product-core {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;

}
.product-description {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    
}
.product-card:hover .product-description {
    transform: translateY(0);
    display: block;
}
.product-card:hover .product-core {
    display: none;
}
/* MAIN END */
/* ----------------------------------------Batas Suci------------------------------------------- */
/* FOOTER START */
.footer-container {
    height: 40vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    background-color: rgb(88, 88, 88);
    color: #EEEEEE;
}
.footer-contact{
    margin-left: 10rem;
    line-height: 3;
    text-decoration: none;
}
.footer-contact a {
    color: #EEEEEE;
}
.footer-socmed {
    margin-top: 0.9rem;
    margin-right: 15rem;
    line-height: 2;
}
.social-icons {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    font-size: 2rem;
    color: #EEEEEE;
}
.social-icons li a{
    color: #EEEEEE;
}

.bottom-bar p{
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #3C3D37;
    color: #EEEEEE;
    padding: 0.3rem;
}
/* FOOTER END */