/* =====================
   RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* =====================
   MENU
===================== */
.nav {
    background-color: #B6C1F8;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.show-menu {
    display: none;
    cursor: pointer;
    font-weight: bold;
}

#show-menu {
    display: none;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.menu li {
    margin: 0 10px;
    background-color: #DCE2FF;
    border-radius: 6px;
}

.menu li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.menu li:hover {
    background-color: #AAB4F8;
}

.menu li a:hover {
    color: #000;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.menu a:hover {
    color: red;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        
    }

    #show-menu:checked + .show-menu + .menu {
        display: flex;
    }

    .show-menu {
        display: block;
        
        margin-bottom: 10px;
    }
    
    .menu li {
        margin: 5px 0;
        border-radius: 0;
        border-bottom: 1px solid #B6C1F8;
    }

}

/* =====================
   TOPBAR
===================== */
.topbar {
    background: #DFE3F6;
    font-size: 12px;
    padding: 6px 10px;
    text-align: center;
}


/* =====================
   SHARED WRAPPER
===================== */
.wrap-70 {
    max-width: 70%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wrap-70 {
        max-width: 100%;
    }
}

/* =====================
   HEADER
===================== */
.header {
    background: url(/images/head.jpg) center no-repeat;
    background-size: contain;   /* PENTING */
    background-color: #DFE3F6;  /* warna latar jika ada ruang kosong */

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 5px;
    min-height: 100px;
}

.header img {
    max-height: 90px;   /* UBAH sesuai kebutuhan */
    width: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .header {
        min-height: 50px;
        padding: 3px;
        background-position: center;
    }
}
/* =====================
   SLIDER
===================== */
#slider {
    position: relative;
    margin: 20px auto;
    overflow: hidden;
}

#slider .slides img {
    width: 100%;
    height: auto;
    display: none;
}

#slider .slides img.active {
    display: block;
}

/* Slider Buttons */
#slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
}

#slider .prev { left: 10px; }
#slider .next { right: 10px; }

/* Dots */
#slider .dots {
    text-align: center;
    margin-top: 10px;
}

#slider .dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

#slider .dots span.active {
    background: #717171;
}

/* =====================
   KONTAK
===================== */
.kontak {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    color: #414141;
    margin: 20px auto;
    max-width: 70%;
    line-height: 1.5;
    background: #FFD44C;
    border-radius: 5px;
    padding: 15px;
}

.kontak h3 {
    color: #D11117;
    margin-bottom: 10px;
}

.kontak a {
    color: #414141;
    text-decoration: none;
}

.kontak a:hover {
    text-decoration: underline;
    color: red;
}

@media (max-width: 768px) {
    .kontak {
        max-width: 100%;
        margin: 15px;
    }
}

/* =====================
   FOOTER
===================== */
.footer {
    text-align: center;
    font-size: 12px;
    margin: 20px 0;
}

/* =====================
   WA FLOATING BUTTON
===================== */
.wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 999;
    display: none;
}

/* =====================
   IFRAME
===================== */
iframe {
    width: 100%;
    height: 90vh;
    border: none;
}
