@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font: #198585;
    --font1: #393E46;
    --bg1: #EEEEEE;
    --bg2: #222831;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: white;
}

/*Navbar*/
.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #222831;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding-left: 20px;
}

.lpp {
    color: #198585;
    
}

.logo img {
    width: 40px;
    height: auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--bg1);
    text-transform: uppercase;
    font-size: 1rem;
}

.menu {
    display: flex;
}

.menu li {
    padding-left: 30px;
}

.menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--bg1);
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #198585;
    transition: 0.15s ease-in-out;
}

.menu li a:hover:after {
    width: 100%;
}

.open-menu, .close-menu {
    position: absolute;
    color: var(--bg1);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.close-menu {
    top: 20px;
    right: 20px;
}

#check {
    display: none;
}




/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* About */
.about {
    background: #f8f9fa;
    padding: 120px 20px;
    text-align: center;
}

.about-title {
    font-size: 28px;
    color: var(--font1);
    margin-bottom: 15px;
}

.about-text {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Produk */
.products {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.judul h2 {
    font-size: 28px;
    color: var(--font1);
    margin-bottom: 20px;
}

.barang {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.product-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product-item h3 {
    font-size: 20px;
    margin-top: 15px;
    color: var(--font1);
}

.product-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Footer */
footer {
    width: 100%;
    background-color: var(--bg2);
    color: white;
    margin-top: 30px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.kiri, .kanan {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.kiri h1 {
    color: var(--font);
    font-size: 22px;
    margin-bottom: 10px;
}

.kiri iframe {
    width: 100%;
    height: 170px;
    border-radius: 10px;
}

.atas {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.isi1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.isi1 h3 {
    color: var(--font);
    font-size: 18px;
}

.isi1 a, .isi1 p {
    text-decoration: none;
    color: var(--font);
    font-size: 16px;
}

.bawah {
    text-align: left;
    align-items: center;
    margin-top: 20px;
}

.bawah p {
    font-size: 14px;
}

.bawah i {
    font-size: 24px;
    color: var(--font);
}

.icon-instagram i {
    font-size: 24px; /* Ukuran ikon */
    color: #E1306C; /* Warna merah muda Instagram */
    transition: color 0.3s; /* Efek transisi saat hover */
}

.icon-instagram:hover i {
    color: #C13584; /* Warna ungu saat hover */
}

.icon-whatsapp i {
    font-size: 24px; /* Ukuran ikon */
    color: #25D366; /* Warna hijau WhatsApp */
    transition: color 0.3s; /* Efek transisi saat hover */
}

.icon-whatsapp:hover i {
    color: #128C7E; /* Warna hijau gelap saat hover */
}


/* Media Queries */
@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .header1, .header2 {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .header2 ul {
        gap: 15px;
    }
    .about {
        padding: 180px 20px 100px 20px;
        text-align: center;
    }
    
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
    }

    .header1, .header2 {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .header2 ul {
        flex-direction: column;
        gap: 10px;
    }

    .barang {
        grid-template-columns: 1fr;
    }

    .atas {
        flex-direction: column;
        gap: 20px;
    }
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup-content {
    background: #fff;
    padding: 30px;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
  }

  @media(max-width: 610px) {
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: #222831;
        transition: all 0.2s ease-in-out;
    }

    .menu li {
        margin-top: 40px;
    }

    .menu li a {
        padding: 10px;
    }

    .open-menu, .close-menu {
        display: block;
    }
    #check:checked ~ .menu {
        right: 0;
    }
  }
  
  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
  }
  .wa-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    background-color: #000000;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .wa-btn:hover {
    background-color: #c72e12;
    
  }

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
    
}

.collaborator {
    margin-bottom: 10px;
    text-align: center;
    background-color: white;
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    background-color: white;
    white-space: nowrap;
    position: relative;

    .logos::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;

    }

}

.logos:hover  .logos-slide {
    animation-play-state: paused;
}

  .logos-slide {
    display: inline-block;
    animation: 9s slide infinite linear;
  }

  .logos-slide img {
    height: 81px;
    margin: 0 40px;

  }