/* navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #FFEABD;  
    color: #267416;
    padding: 10px 40px;       
    position: fixed;   
    top: 0;
    left: 0;
    z-index: 1000;      
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links li a {
    color: #267416;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background-color: #267416;
    color: #FFEABD;
    border-radius: 4px;
}

/* body */
body {
    padding-top: 80px;
}

/* footer */
footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFEABD;
    padding: 1.5rem 8%;
    font-size: 0.9rem;
}

footer a {
    color: #267416;
    text-decoration: none;
}

footer .socials {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
}




