/* 
Custom CSS by Hasan Salihin
https://hasan.web.id
*/
body {
    font-family: "Andika", sans-serif;
    background-color: #fff;
    color: #111;
}
html::selection,body::selection {
  background: #cddc39;
  color: #333 !important;
}
html::-moz-selection {
  background: #cddc39;
  color: #333;
}
.map-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 8px;
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        img {
            filter: grayscale(100%);
            -webkit-filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        img:hover {
            filter: grayscale(0%);
            -webkit-filter: grayscale(0%);
        }

        .top-bar {
            background: #0D253F;
            color: #fff;
            text-align: center;
            font-size: 0.9rem;
            padding: 0.4rem 1rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 30;
        }
        .top-bar a:hover {color: white; text-decoration: underline;}
        .navbar.is-fixed-top {
            top: 2rem;
        }

        .lime {
            color: #cddc39;
        }

        .navbar {
            background-color: #1A73E8 !important;
        }

        .navbar-menu {
            background-color: #1A73E8 !important;
        }

        .navbar-item,
        .navbar-link {
            color: #fff !important;
        }

        .navbar-item:hover,
        .navbar-link:hover {
            background-color: #0D253F !important;
            color: #cddc39 !important;
        }

        .button.is-lime {
            background-color: #cddc39;
            color: #111;
            border: none;
        }

        .button.is-lime:hover {
            background-color: #d4e157;
            color: #000;
        }

        .wa-float-wrapper {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1000;
        }

        .wa-text-float {
            background-color: #d4ff00;
            padding: 5px;
            border-radius: 10px;
            color: #111;
            font-weight: bold;
            font-size: 16px;
        }

        .wa-icon-float {
            background-color: #d4ff00;
            color: #111;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .wa-icon-float:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
        }

        .wa-icon-float i {
            font-size: 28px;
        }

        .foot:hover, .foot a:hover {
            color: #d4ff00 !important;
            text-decoration: underline;
        }