:root {
    --color-primary: #077336;
    --color-secondary: #93d94e;
    --color-danger: #f23827;
    --color-putih: #f2f2f2;
    --color-hitam: #0d0d0d;
}
*,
:after,
:before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
:after,
:before {
    --tw-content: "";
}
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: Roboto, sans-serif;
    font-feature-settings: normal;
}
nav {
    background-color: var(--color-primarys);
}
body {
    margin: 0;
    line-height: inherit;
}

.parallax-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}



.overlay-dark {
    background-color: #0009;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 1rem;
}
.button,
.secbutton {
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.button {
    background-color: #198754;
    color: #fff;
}
.button:hover {
    background-color: #157347;
}
.secbutton {
    background-color: #fff;
    color: #198754;
    border: 2px solid #198754;
}
.secbutton:hover {
    background-color: #198754;
    color: #fff;
}
.parallax-image {
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.2s ease-out;
}
.galeri-img-wrapper {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}
.galeri-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.galeri-img:hover {
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .parallax-section {
        background-attachment: cover;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .overlay-dark {
        padding: 2rem 1rem;
    }

    .galeri-img-wrapper {
        height: 180px;
    }
}
