/* --- LOGO STYLING --- */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 60px; /* Standard professional header height */
    width: auto;   /* Maintains 1:1 aspect ratio */
    display: block;
    transition: transform 0.2s ease;
}
.logo-img:hover {
    transform: scale(1.05); /* Subtle pop effect on hover */
}
/* --- HEADER STYLES --- */
.main-header {
    background-color: #85a740; /* Your Brand Green */
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}
/* --- NAVIGATION LINKS --- */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s;
}
.nav-menu a:hover {
    opacity: 0.8;
}

/* --- MOBILE TOGGLE (Hidden on Desktop) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* --- MOBILE RESPONSIVE RULES --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        display: none; /* Hide menu by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #749338; /* Slightly darker green for menu */
        padding: 20px 0;
    }
    .nav-menu.active {
        display: block; /* Show menu when toggle is clicked */
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
	/* --- MOBILE LOGO ADJUSTMENT --- */
    .logo-img {
        height: 50px; /* Slightly smaller for mobile screens */
    }    
    .header-container {
        padding: 0 15px; /* Tighter padding for mobile */
    }
}