body {
    font-family: 'Poppins', sans-serif;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #166534;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

#mobile-menu-button.open .top {
    transform: rotate(45deg) translate(6px, 6px);
}

#mobile-menu-button.open .middle {
    opacity: 0;
    transform: translateX(-20px);
}

#mobile-menu-button.open .bottom {
    transform: rotate(-45deg) translate(6px, -6px);
}

#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

#mobile-menu.open {
    max-height: 500px;
}