  body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        /* NAVIGATION */

.navbar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
}

.logo {
    margin-left: 300px;
}

.logo img {
    display: flex;
    width: 90px;
    align-items: center;
}

.text-logo {
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}


.navbar {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.navbar .navbar-ul {
    list-style: none;
    margin: 0 1rem;
    padding: 30px;
    align-items: center;
    display: flex;
    margin-right: 200px;
}

.navbar .navbar-ul .navbar-li {
    margin-right: 20px;
}

.navbar .navbar-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-family: "Poetsen One", sans-serif;

}

.navbar .navbar-ul .navbar-li .navbar-link {
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
    padding: 30px 20px;
    opacity: 70%;
    transition: all 0.5s ease-in-out;

}

.navbar .navbar-ul .navbar-li .navbar-link::before {
    content: " ";
    position: relative;
    left: -20px;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #4f7942;
    transition: all 0.5s ease-in-out;
}

.navbar .navbar-ul .navbar-li .navbar-link:hover::before {
    left: 0;
    position: absolute;
}

.navbar .navbar-ul .navbar-li .navbar-link:hover {
    opacity: 100%;
}



.navbar .navbar-ul .navbar-li .active::before {
    content: " ";
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #4f7942;
    transition: all 0.5s ease-in-out;
}

.navbar .navbar-ul .navbar-li .active {
    opacity: 100%;
}

.menu-icon {
    display: none;
}

/*RESPONSIVE NAVIGATION BAR*/
.reponsive-navbar ul {
    display: none;
}

.reponsive-navbar .hidden {
    display: none;
}

/* MAIN BOARD */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.hero-content h1 {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}

.hero-section {
    position: relative;
    width: 100%;
    height: 505px;
    /* tinggi area gambar */
    overflow: hidden;

}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* warna hitam semi transparan */
    z-index: 1;

}

.hero-content {
    position: absolute;
    top: 70%;
    left: 20%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

.hero-content button {
    margin-top: 10px;
    padding: 15px 40px;
    background-color: hwb(106 26% 53%);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: .9rem;
}

/* CONTACT */

        .container {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
        }
        h1 {
            font-size: 32px;
        }
        .highlight {
            color: teal;
            border-bottom: 3px solid teal;
            display: inline-block;
            margin-bottom: 20px;
        }
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            margin: 20px 0;
            font-weight: bold;
        }
        .info {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            border-top: 1px dotted #ccc;
            padding-top: 20px;
            margin-top: 20px;
        }
        .info div {
            width: 45%;
            margin-bottom: 20px;
        }
        .office-hour {
            border-top: 1px dotted #ccc;
            padding-top: 20px;
        }

        /* FOOTER */

footer {
    background-color: #1f1f1f;
    color: #fff;
    padding: 60px 30px 20px 30px;
   
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-logo {
    color: #00bfa6;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 6px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 6px;
    color: #00bfa6;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00bfa6;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.footer-gallery img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #999;
    border-top: 1px solid #333;
    padding: 20px 0 10px;
    margin-top: 30px;
}



@media only screen and (max-width: 1440px) {
      /*NAVIGATION BAR*/

    .navbar .navbar-ul {
        margin-right: 5px;
    }

    .logo {
        margin-left: 20px;
    }

    /* MAIN BOARD */
    .hero-content {
        left: 5%;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 400px;
    }
}

@media only screen and (max-width: 1025px) {
     /*NAVIGATION BAR*/

    .navbar .navbar-ul {
        margin-right: 5px;
    }

    .logo {
        margin-left: 20px;
    }

    /* MAIN BOARD */
    .hero-content {
        left: 5%;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 400px;
    }
}

@media only screen and (max-width: 768px) {
      /*NAVIGATION BAR*/

    .menu-icon {
        align-items: center;
        display: flex;
    }

    .logo img {
        width: 70px;
    }

    .navbar .navbar-ul {
        display: none;
    }


    /*RESPONSIVE NAVIGATION BAR */

    .reponsive-navbar ul {
        display: block;
    }

    .reponsive-navbar ul {
        position: fixed;
        width: 100%;
        flex-direction: column;
        display: flex;
        align-items: center;
        margin-top: 8rem;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
        z-index: 998;
    }

    .reponsive-navbar ul {
        list-style: none;
        box-shadow: black;
    }

    .reponsive-navbar ul li {
        margin: 2rem;
    }

    .reponsive-navbar ul li a {
        text-decoration: none;
        color: black;
        justify-content: center;
        display: flex;
        font-weight: bold;
        opacity: 60%;
        font-family: "Poetsen One", sans-serif;
    }

    .reponsive-navbar ul li a {
        position: relative;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
    }

    .reponsive-navbar ul li a:hover {
        opacity: 100%;
    }

    /* MAIN BOARD */

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 400px;
    }
}