/* Basic reset and font settings */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff; /* A light background to make the navbar stand out */
}

/* Main navbar container styling */
.navbar {
    display: flex;
    justify-content: space-between; /* Pushes logo to the left and nav to the right */
    align-items: center; /* Vertically centers all items */
    padding: 12px 16px; /* Vertical and horizontal padding */
    background-color: #ffffff;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);*/ /* Optional: adds a subtle shadow */
}

/* Logo styling */
.navbar-logo img {
    /* Adjust height to fit your logo's dimensions */
    height: 35px;
    display: block; /* Removes extra space below the image */
}

/* Navigation links container */
.navbar-nav {
    display: flex;
    align-items: center;
    flex-direction: unset;
    gap: 16px; /* Creates space between the navigation items */
}

/* General style for all links in the nav */
.navbar-nav a {
    text-decoration: none;
    color: #568002; /* Green color from the mockup */
    font-weight: 600; /* Makes the font semi-bold */
    font-size: 0.9rem; /* Responsive font size */
    transition: color 0.2s ease-in-out; /* Smooth color change on hover */
    font-family: Poppins;
}

/* Hover effect for text links */
.navbar-nav a:not(.icon-link):hover {
    color: #4b5d17; /* A darker green for hover */
}

/* Styling for the SVG icon within its link */
.icon-link svg {
    width: 22px;
    height: 22px;
    stroke: #568002; /* Sets the icon's color */
    transition: stroke 0.2s ease-in-out;
}

/* Hover effect for the icon */
.icon-link:hover svg {
    stroke: #568002; /* Darker green on hover */
}


@media only screen and (min-width: 320px) and (max-width: 480px) {

.navbar-nav a {
    font-size: 0.7rem;
}    

}
