@font-face {
    font-family: prompt;
    src: url(converted-fonts/Prompt-SemiBold.woff);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: prompt;
    overflow-x: hidden;
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    background: linear-gradient(to right,#d2f3c2, #ffffff);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.Heromenu{
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}
.Heromenu p{
    margin-left: 1rem;
    color: rgba(142, 142, 142, 0.9);
}
@media screen and (max-width: 1200px){
    .Heromenu h2{
    font-size: 20px;
    align-items: center;
    line-height: 1.5rem;
    }
    .Heromenu p{
    font-size: 10px;
    align-items: center;
    }
    
}
.logo{
    display: flex;
}
.logo h2{
    display: flex;
    align-items: center;
    margin-left: 1rem;
}
.logo img {
    margin-left: 1rem;
    display: flex;
    width: 80px;
    height: auto;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    z-index: 999;
}

.nav-links li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: ease-out color 0.3s;
}

.nav-links li a:hover {
    color: #00ff37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #24e62a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.toggle div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle div:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1200px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: -220px; 
        background: #a5fcc0;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 8px 0 0 8px;
        box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        display: flex;
    }

    .nav-links.active {
        right: 0; 
    }

    .hamburger {
        display: flex;
    }
    .logo img {
        width: 120px;
    }
}