/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --font: #00ADB5;
    --font1: #393E46;
    --bg1: #EEEEEE;
    --bg2: #222831;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/*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;
}

.lpp {
    color: #198585;
    
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding-left: 20px;
}

.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;
}

.isiabout {
    display: flex;
    max-width: 1100px;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.satu, .dua {
    flex: 1;
}

h1 {
    color: #005f73;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    font-size: 14px;
    line-height: 1.8;
}

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 {
    margin-bottom: 10px;
}

.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 (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;
    }
}

@media (max-width: 768px) {
    .isiabout {
        flex-direction: column;
    }
    
    .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;
    }
    
}

@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;
    }
  }