/* Header Styling */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00833d; /* Green background */
    padding: 10px 20px;
    color: white;
}

/* Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    width: 50px; /* Smaller size */
    height: 50px;
    border-radius: 50%; /* Optional: Makes the image circular */
    object-fit: cover;
    margin-right: 15px; /* Adds spacing between the logo and the text */
    border: 2px solid white; /* Optional: Adds a border */
    transition: transform 0.3s ease; /* Adds hover effect */
}

.header-logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    cursor: pointer; /* Pointer cursor to indicate it's clickable */
}

/* Navigation Menu Styling */
.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav li {
    margin-left: 20px;
}

.header-nav a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #ffcc00; /* Golden yellow on hover */
}
